blob: 3ff76bada91e7eed954e0093c4229a5759c4c327 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 JCraft,Inc. and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* JCraft,Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.jsch.core;
/**
* This interface abstracts the password store. The given password
* will be stored to via this interface.
*
* This interface is intended to be implemented by clients.
* @since 1.1
*/
public interface IPasswordStore{
/**
* The cached password should be flushed.
* @param location location string helper
*/
public void clear(IJSchLocation location);
/**
* This method will check if the password is cached or not.
* @param location location string helper
* @return whether the password is cached.
*/
public boolean isCached(IJSchLocation location);
/**
* The new password "location.getPassword()" will be
* cached.
* @param location location string helper
*/
public void update(IJSchLocation location);
}