mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-03 15:15:25 +02:00
[doc] improve javadoc for IConnectorService
This commit is contained in:
parent
29a39c85ae
commit
ca4b641ba5
2 changed files with 10 additions and 8 deletions
|
@ -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.
|
||||
*/
|
||||
|
|
|
@ -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() {
|
||||
|
|
Loading…
Add table
Reference in a new issue