Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.jsch.core/src/org/eclipse/jsch/core/IPasswordStore.java')
-rw-r--r--bundles/org.eclipse.jsch.core/src/org/eclipse/jsch/core/IPasswordStore.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/bundles/org.eclipse.jsch.core/src/org/eclipse/jsch/core/IPasswordStore.java b/bundles/org.eclipse.jsch.core/src/org/eclipse/jsch/core/IPasswordStore.java
index 3816e7f09..3ff76bada 100644
--- a/bundles/org.eclipse.jsch.core/src/org/eclipse/jsch/core/IPasswordStore.java
+++ b/bundles/org.eclipse.jsch.core/src/org/eclipse/jsch/core/IPasswordStore.java
@@ -23,20 +23,21 @@ package org.eclipse.jsch.core;
public interface IPasswordStore{
/**
* The cached password should be flushed.
- * @param location
+ * @param location location string helper
*/
public void clear(IJSchLocation location);
/**
* This method will check if the password is cached or not.
- * @param location
+ * @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);
}

Back to the top