Interface PasswordCredentials
-
- All Superinterfaces:
Credentials,PasswordCredentials
public interface PasswordCredentials extends PasswordCredentials
A username/password credentials that can be used to login to password-protected remote repository.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetPassword()Returns the password to use when authenticating to this repository.StringgetUsername()Returns the user name to use when authenticating to this repository.voidsetPassword(String password)Sets the password to use when authenticating to this repository.voidsetUsername(String userName)Sets the user name to use when authenticating to this repository.
-
-
-
Method Detail
-
getUsername
@Nullable String getUsername()
Returns the user name to use when authenticating to this repository.- Specified by:
getUsernamein interfacePasswordCredentials- Returns:
- The user name. May be null.
-
setUsername
void setUsername(@Nullable String userName)
Sets the user name to use when authenticating to this repository.- Specified by:
setUsernamein interfacePasswordCredentials- Parameters:
userName- The user name. May be null.
-
getPassword
@Nullable String getPassword()
Returns the password to use when authenticating to this repository.- Specified by:
getPasswordin interfacePasswordCredentials- Returns:
- The password. May be null.
-
setPassword
void setPassword(@Nullable String password)
Sets the password to use when authenticating to this repository.- Specified by:
setPasswordin interfacePasswordCredentials- Parameters:
password- The password. May be null.
-
-