Interface PasswordCredentials
- All Superinterfaces:
Credentials,PasswordCredentials
A username/password credentials that can be used to login to password-protected remote repository.
-
Method Summary
Modifier and TypeMethodDescription@Nullable StringReturns the password to use when authenticating to this repository.@Nullable StringReturns the user name to use when authenticating to this repository.voidsetPassword(@Nullable String password) Sets the password to use when authenticating to this repository.voidsetUsername(@Nullable String userName) Sets the user name to use when authenticating to this repository.
-
Method Details
-
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
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
Sets the password to use when authenticating to this repository.- Specified by:
setPasswordin interfacePasswordCredentials- Parameters:
password- The password. May be null.
-