Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Dykstal2008-04-23 18:30:16 +0000
committerDavid Dykstal2008-04-23 18:30:16 +0000
commitb2e93b069ef303c9c7052cde26294a9e0e6d3b46 (patch)
tree3775da1e18086640f64525d7f780c9eee8a44d60
parente629ff7634c559958dfba2b5b32d4717ff38f9a2 (diff)
downloadorg.eclipse.tm-b2e93b069ef303c9c7052cde26294a9e0e6d3b46.tar.gz
org.eclipse.tm-b2e93b069ef303c9c7052cde26294a9e0e6d3b46.tar.xz
org.eclipse.tm-b2e93b069ef303c9c7052cde26294a9e0e6d3b46.zip
[cleanup] fixing @since tags
-rw-r--r--rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/PasswordPersistenceManager.java5
-rw-r--r--rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/RSEPreferencesManager.java6
2 files changed, 5 insertions, 6 deletions
diff --git a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/PasswordPersistenceManager.java b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/PasswordPersistenceManager.java
index 00e1b27ff..a89de8599 100644
--- a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/PasswordPersistenceManager.java
+++ b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/PasswordPersistenceManager.java
@@ -43,7 +43,6 @@ import org.eclipse.rse.internal.core.RSECoreMessages;
* PasswordPersistenceManager manages the saving and retrieving of user ID /
* passwords to the Eclipse keyring for registered system types.
*
- * @author yantzi
* @noextend This class is not intended to be subclassed by clients.
* @noinstantiate This class is not intended to be instantiated by clients. Use
* the {@link #getInstance()} method to get the singleton
@@ -61,7 +60,7 @@ public class PasswordPersistenceManager {
// Add return codes
public static final int RC_OK = 0;
public static final int RC_ALREADY_EXISTS = 1;
- /** @since org.eclipse.rse.core 3.0 */
+ /** @since org.eclipse.rse.core 2.1 */
public static final int RC_DENIED = 2;
public static final int RC_ERROR = -1;
@@ -195,7 +194,7 @@ public class PasswordPersistenceManager {
* @param systemType The system type of the host
* @param hostName The IP address of the host in canonical format
* @return the number of passwords removed from the keyring
- * @since org.eclipse.rse.core 3.0
+ * @since org.eclipse.rse.core 2.1
*/
public int remove(IRSESystemType systemType, String hostName) {
Map passwords = getPasswordMap(systemType);
diff --git a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/RSEPreferencesManager.java b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/RSEPreferencesManager.java
index 9e2c5fa39..02809c980 100644
--- a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/RSEPreferencesManager.java
+++ b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/RSEPreferencesManager.java
@@ -465,7 +465,7 @@ public class RSEPreferencesManager {
*
* @return the boolean value indicating whether or not to create a local
* connection on a fresh workspace.
- * @since org.eclipse.rse.core 3.0
+ * @since org.eclipse.rse.core 2.1
*/
public static boolean getCreateLocalConnection() {
Preferences prefs = RSECorePlugin.getDefault().getPluginPreferences();
@@ -483,7 +483,7 @@ public class RSEPreferencesManager {
* If true then all passwords that have been saved for this system type and host address are removed.
* All passwords saved for the default system type and host address are also removed.
* @return the number of passwords removed if deny was set to true
- * @since org.eclipse.rse.core 3.0
+ * @since org.eclipse.rse.core 2.1
*/
public static int setDenyPasswordSave(IRSESystemType systemType, String hostAddress, boolean deny) {
int result = 0;
@@ -504,7 +504,7 @@ public class RSEPreferencesManager {
* @param systemType
* @param hostAddress
* @return true if saving of passwords is denied. false if saving is allowed.
- * @since org.eclipse.rse.core 3.0
+ * @since org.eclipse.rse.core 2.1
*/
public static boolean getDenyPasswordSave(IRSESystemType systemType, String hostAddress) {
Preferences preferences = RSECorePlugin.getDefault().getPluginPreferences();

Back to the top