Package org.keycloak.services.managers
Enum AuthenticationManager.AuthenticationStatus
- java.lang.Object
- 
- java.lang.Enum<AuthenticationManager.AuthenticationStatus>
- 
- org.keycloak.services.managers.AuthenticationManager.AuthenticationStatus
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<AuthenticationManager.AuthenticationStatus>
 - Enclosing class:
- AuthenticationManager
 
 public static enum AuthenticationManager.AuthenticationStatus extends Enum<AuthenticationManager.AuthenticationStatus> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ACCOUNT_DISABLEDACCOUNT_TEMPORARILY_DISABLEDACTIONS_REQUIREDFAILEDINVALID_CREDENTIALSINVALID_USERMISSING_PASSWORDMISSING_TOTPSUCCESS
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static AuthenticationManager.AuthenticationStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static AuthenticationManager.AuthenticationStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
SUCCESSpublic static final AuthenticationManager.AuthenticationStatus SUCCESS 
 - 
ACCOUNT_TEMPORARILY_DISABLEDpublic static final AuthenticationManager.AuthenticationStatus ACCOUNT_TEMPORARILY_DISABLED 
 - 
ACCOUNT_DISABLEDpublic static final AuthenticationManager.AuthenticationStatus ACCOUNT_DISABLED 
 - 
ACTIONS_REQUIREDpublic static final AuthenticationManager.AuthenticationStatus ACTIONS_REQUIRED 
 - 
INVALID_USERpublic static final AuthenticationManager.AuthenticationStatus INVALID_USER 
 - 
INVALID_CREDENTIALSpublic static final AuthenticationManager.AuthenticationStatus INVALID_CREDENTIALS 
 - 
MISSING_PASSWORDpublic static final AuthenticationManager.AuthenticationStatus MISSING_PASSWORD 
 - 
MISSING_TOTPpublic static final AuthenticationManager.AuthenticationStatus MISSING_TOTP 
 - 
FAILEDpublic static final AuthenticationManager.AuthenticationStatus FAILED 
 
- 
 - 
Method Detail- 
valuespublic static AuthenticationManager.AuthenticationStatus[] 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 (AuthenticationManager.AuthenticationStatus c : AuthenticationManager.AuthenticationStatus.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static AuthenticationManager.AuthenticationStatus 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 name
- NullPointerException- if the argument is null
 
 
- 
 
-