public static enum OIDCAuthenticationError.Reason extends Enum<OIDCAuthenticationError.Reason>
Enum Constant and Description |
---|
CODE_TO_TOKEN_FAILURE |
INVALID_STATE_COOKIE |
INVALID_TOKEN |
NO_AUTHORIZATION_HEADER |
NO_BEARER_TOKEN |
NO_QUERY_PARAMETER_ACCESS_TOKEN |
NO_REDIRECT_URI |
OAUTH_ERROR |
SSL_REQUIRED |
STALE_TOKEN |
Modifier and Type | Method and Description |
---|---|
static OIDCAuthenticationError.Reason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OIDCAuthenticationError.Reason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OIDCAuthenticationError.Reason NO_BEARER_TOKEN
public static final OIDCAuthenticationError.Reason NO_REDIRECT_URI
public static final OIDCAuthenticationError.Reason INVALID_STATE_COOKIE
public static final OIDCAuthenticationError.Reason OAUTH_ERROR
public static final OIDCAuthenticationError.Reason SSL_REQUIRED
public static final OIDCAuthenticationError.Reason CODE_TO_TOKEN_FAILURE
public static final OIDCAuthenticationError.Reason INVALID_TOKEN
public static final OIDCAuthenticationError.Reason STALE_TOKEN
public static final OIDCAuthenticationError.Reason NO_AUTHORIZATION_HEADER
public static final OIDCAuthenticationError.Reason NO_QUERY_PARAMETER_ACCESS_TOKEN
public static OIDCAuthenticationError.Reason[] values()
for (OIDCAuthenticationError.Reason c : OIDCAuthenticationError.Reason.values()) System.out.println(c);
public static OIDCAuthenticationError.Reason valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019 JBoss by Red Hat. All rights reserved.