Package org.wildfly.security.http.oidc
Enum AuthenticationError.Reason
- java.lang.Object
- 
- java.lang.Enum<AuthenticationError.Reason>
- 
- org.wildfly.security.http.oidc.AuthenticationError.Reason
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<AuthenticationError.Reason>
 - Enclosing class:
- AuthenticationError
 
 public static enum AuthenticationError.Reason extends Enum<AuthenticationError.Reason> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description CODE_TO_TOKEN_FAILUREINVALID_STATE_COOKIEINVALID_TOKENNO_AUTHORIZATION_HEADERNO_BEARER_TOKENNO_QUERY_PARAMETER_ACCESS_TOKENNO_REDIRECT_URIOAUTH_ERRORSSL_REQUIREDSTALE_TOKEN
 - 
Constructor SummaryConstructors Modifier Constructor Description privateReason()
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static AuthenticationError.ReasonvalueOf(String name)Returns the enum constant of this type with the specified name.static AuthenticationError.Reason[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
NO_BEARER_TOKENpublic static final AuthenticationError.Reason NO_BEARER_TOKEN 
 - 
NO_REDIRECT_URIpublic static final AuthenticationError.Reason NO_REDIRECT_URI 
 - 
INVALID_STATE_COOKIEpublic static final AuthenticationError.Reason INVALID_STATE_COOKIE 
 - 
OAUTH_ERRORpublic static final AuthenticationError.Reason OAUTH_ERROR 
 - 
SSL_REQUIREDpublic static final AuthenticationError.Reason SSL_REQUIRED 
 - 
CODE_TO_TOKEN_FAILUREpublic static final AuthenticationError.Reason CODE_TO_TOKEN_FAILURE 
 - 
INVALID_TOKENpublic static final AuthenticationError.Reason INVALID_TOKEN 
 - 
STALE_TOKENpublic static final AuthenticationError.Reason STALE_TOKEN 
 - 
NO_AUTHORIZATION_HEADERpublic static final AuthenticationError.Reason NO_AUTHORIZATION_HEADER 
 - 
NO_QUERY_PARAMETER_ACCESS_TOKENpublic static final AuthenticationError.Reason NO_QUERY_PARAMETER_ACCESS_TOKEN 
 
- 
 - 
Method Detail- 
valuespublic static AuthenticationError.Reason[] 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 (AuthenticationError.Reason c : AuthenticationError.Reason.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static AuthenticationError.Reason 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
 
 
- 
 
-