diff --git a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/subsystems/IConnectorService.java b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/subsystems/IConnectorService.java index d9ddd224712..aa1c22356e3 100644 --- a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/subsystems/IConnectorService.java +++ b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/subsystems/IConnectorService.java @@ -362,12 +362,14 @@ public interface IConnectorService extends IRSEModelObject { IServerLauncher getRemoteServerLauncher(); /** + * Test if this connector service requires a password. * @return true if this connector service supports passwords and * requires a password to connect to its target system. */ boolean requiresPassword(); /** + * Test if this connector service requires a user id. * @return true if this connector service understands the concept of a * user id and requires one to connect to its target system. */ diff --git a/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/ui/subsystems/StandardConnectorService.java b/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/ui/subsystems/StandardConnectorService.java index 520436c9723..b1cc0ea3797 100644 --- a/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/ui/subsystems/StandardConnectorService.java +++ b/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/ui/subsystems/StandardConnectorService.java @@ -43,21 +43,21 @@ public abstract class StandardConnectorService extends AuthenticatingConnectorSe } /** - * Indicates if this connector service understands passwords. + * Determines if this connector service understand the concept of a password. * This implementation always returns true. * Override if necessary. - * @return true * @see org.eclipse.rse.core.subsystems.IConnectorService#supportsPassword() + * @return true */ public boolean supportsPassword() { return true; } /** - * @see org.eclipse.rse.core.subsystems.IConnectorService#requiresPassword() - * Indicates if this connector service requires a password. + * Test if this connector service requires a password. * This implementation always returns true. * Override if necessary. + * @see org.eclipse.rse.core.subsystems.IConnectorService#requiresPassword() * @return true */ public boolean requiresPassword() { @@ -65,21 +65,21 @@ public abstract class StandardConnectorService extends AuthenticatingConnectorSe } /** - * Indicates if this connector service understands user ids. + * Reports if this connector service can use a user identifier. * This implementation always returns true. * Override if necessary. - * @return true * @see org.eclipse.rse.core.subsystems.IConnectorService#supportsUserId() + * @return true */ public boolean supportsUserId() { return true; } /** - * @see org.eclipse.rse.core.subsystems.IConnectorService#requiresUserId() - * Indicates if this connector service requires a user id. + * Test if this connector service requires a user id. * This implementation always returns true. * Override if necessary. + * @see org.eclipse.rse.core.subsystems.IConnectorService#requiresUserId() * @return true */ public boolean requiresUserId() {