Enum CredentialValidationResult.Status
- java.lang.Object
-
- java.lang.Enum<CredentialValidationResult.Status>
-
- jakarta.security.enterprise.identitystore.CredentialValidationResult.Status
-
- All Implemented Interfaces:
Serializable
,Comparable<CredentialValidationResult.Status>
- Enclosing class:
- CredentialValidationResult
public static enum CredentialValidationResult.Status extends Enum<CredentialValidationResult.Status>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INVALID
Indicates that the credential is not valid after a validation attempt.NOT_VALIDATED
Indicates that the credential could not be validatedVALID
Indicates that the credential is valid after a validation attempt.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CredentialValidationResult.Status
valueOf(String name)
Returns the enum constant of this type with the specified name.static CredentialValidationResult.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_VALIDATED
public static final CredentialValidationResult.Status NOT_VALIDATED
Indicates that the credential could not be validated
-
INVALID
public static final CredentialValidationResult.Status INVALID
Indicates that the credential is not valid after a validation attempt.
-
VALID
public static final CredentialValidationResult.Status VALID
Indicates that the credential is valid after a validation attempt.
-
-
Method Detail
-
values
public static CredentialValidationResult.Status[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CredentialValidationResult.Status c : CredentialValidationResult.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CredentialValidationResult.Status valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-