Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3816e7f090b586e245e40f9d1e67c098c8f83639 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*******************************************************************************
 * 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
   */
  public void clear(IJSchLocation location);
  
  /**
   * This method will check if the password is cached or not.
   * @param location
   * @return whether the password is cached.
   */
  public boolean isCached(IJSchLocation location);
  
  /*
   * The new password "location.getPassword()" will be
   * cached.
   */
  public void update(IJSchLocation location);
}

Back to the top