Class UsernamePasswordCredential
java.lang.Object
jakarta.security.enterprise.credential.AbstractClearableCredential
jakarta.security.enterprise.credential.UsernamePasswordCredential
- All Implemented Interfaces:
Credential
- Direct Known Subclasses:
BasicAuthenticationCredential
public class UsernamePasswordCredential extends AbstractClearableCredential
Represents the credentials typically used by standard caller name/password authentication.
-
Constructor Summary
Constructors Constructor Description UsernamePasswordCredential(java.lang.String callerName, Password password)Constructor.UsernamePasswordCredential(java.lang.String callerName, java.lang.String password)Constructor. -
Method Summary
Modifier and Type Method Description voidclearCredential()Invokes the specific subclass to securely clear the credential value.booleancompareTo(java.lang.String callerName, java.lang.String password)java.lang.StringgetCaller()PasswordgetPassword()Determines the password.java.lang.StringgetPasswordAsString()Determines the password.Methods inherited from class jakarta.security.enterprise.credential.AbstractClearableCredential
clear, isCleared, setCleared
-
Constructor Details
-
UsernamePasswordCredential
public UsernamePasswordCredential(java.lang.String callerName, java.lang.String password)Constructor.- Parameters:
callerName- The caller namepassword- The password, as a String
-
UsernamePasswordCredential
Constructor.- Parameters:
callerName- The caller namepassword- The password
-
-
Method Details
-
getPassword
Determines the password.- Returns:
- The password.
-
getPasswordAsString
public java.lang.String getPasswordAsString()Determines the password.- Returns:
- The password, as a String.
-
clearCredential
public void clearCredential()Description copied from class:AbstractClearableCredentialInvokes the specific subclass to securely clear the credential value. Somesubclasses contain credential values which are inherently secure, such as tokens, for which clearing the credential may not be necessary.CredentialFor example, if the credential includes a password, this method would overwrite the password value.
- Specified by:
clearCredentialin classAbstractClearableCredential
-
getCaller
public java.lang.String getCaller() -
compareTo
public boolean compareTo(java.lang.String callerName, java.lang.String password)
-