Package org.keycloak.authentication
Enum AuthenticationFlowError
- java.lang.Object
- 
- java.lang.Enum<AuthenticationFlowError>
- 
- org.keycloak.authentication.AuthenticationFlowError
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<AuthenticationFlowError>
 
 public enum AuthenticationFlowError extends Enum<AuthenticationFlowError> Set of error codes that can be thrown by an Authenticator, FormAuthenticator, or FormAction- Version:
- $Revision: 1 $
- Author:
- Bill Burke
 
- 
- 
Enum Constant Summary
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static AuthenticationFlowErrorvalueOf(String name)Returns the enum constant of this type with the specified name.static AuthenticationFlowError[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
EXPIRED_CODEpublic static final AuthenticationFlowError EXPIRED_CODE 
 - 
INVALID_CLIENT_SESSIONpublic static final AuthenticationFlowError INVALID_CLIENT_SESSION 
 - 
INVALID_USERpublic static final AuthenticationFlowError INVALID_USER 
 - 
INVALID_CREDENTIALSpublic static final AuthenticationFlowError INVALID_CREDENTIALS 
 - 
CREDENTIAL_SETUP_REQUIREDpublic static final AuthenticationFlowError CREDENTIAL_SETUP_REQUIRED 
 - 
USER_DISABLEDpublic static final AuthenticationFlowError USER_DISABLED 
 - 
USER_CONFLICTpublic static final AuthenticationFlowError USER_CONFLICT 
 - 
USER_TEMPORARILY_DISABLEDpublic static final AuthenticationFlowError USER_TEMPORARILY_DISABLED 
 - 
INTERNAL_ERRORpublic static final AuthenticationFlowError INTERNAL_ERROR 
 - 
UNKNOWN_USERpublic static final AuthenticationFlowError UNKNOWN_USER 
 - 
FORK_FLOWpublic static final AuthenticationFlowError FORK_FLOW 
 - 
UNKNOWN_CLIENTpublic static final AuthenticationFlowError UNKNOWN_CLIENT 
 - 
CLIENT_NOT_FOUNDpublic static final AuthenticationFlowError CLIENT_NOT_FOUND 
 - 
CLIENT_DISABLEDpublic static final AuthenticationFlowError CLIENT_DISABLED 
 - 
CLIENT_CREDENTIALS_SETUP_REQUIREDpublic static final AuthenticationFlowError CLIENT_CREDENTIALS_SETUP_REQUIRED 
 - 
INVALID_CLIENT_CREDENTIALSpublic static final AuthenticationFlowError INVALID_CLIENT_CREDENTIALS 
 - 
IDENTITY_PROVIDER_NOT_FOUNDpublic static final AuthenticationFlowError IDENTITY_PROVIDER_NOT_FOUND 
 - 
IDENTITY_PROVIDER_DISABLEDpublic static final AuthenticationFlowError IDENTITY_PROVIDER_DISABLED 
 - 
IDENTITY_PROVIDER_ERRORpublic static final AuthenticationFlowError IDENTITY_PROVIDER_ERROR 
 - 
DISPLAY_NOT_SUPPORTEDpublic static final AuthenticationFlowError DISPLAY_NOT_SUPPORTED 
 - 
ACCESS_DENIEDpublic static final AuthenticationFlowError ACCESS_DENIED 
 - 
GENERIC_AUTHENTICATION_ERRORpublic static final AuthenticationFlowError GENERIC_AUTHENTICATION_ERROR 
 
- 
 - 
Method Detail- 
valuespublic static AuthenticationFlowError[] 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 (AuthenticationFlowError c : AuthenticationFlowError.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static AuthenticationFlowError 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
 
 
- 
 
-