Package org.keycloak.protocol.oidc
Enum LogoutTokenValidationCode
- java.lang.Object
-
- java.lang.Enum<LogoutTokenValidationCode>
-
- org.keycloak.protocol.oidc.LogoutTokenValidationCode
-
- All Implemented Interfaces:
Serializable
,Comparable<LogoutTokenValidationCode>
public enum LogoutTokenValidationCode extends Enum<LogoutTokenValidationCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getErrorMessage()
static LogoutTokenValidationCode
valueOf(String name)
Returns the enum constant of this type with the specified name.static LogoutTokenValidationCode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VALIDATION_SUCCESS
public static final LogoutTokenValidationCode VALIDATION_SUCCESS
-
DECODE_TOKEN_FAILED
public static final LogoutTokenValidationCode DECODE_TOKEN_FAILED
-
COULD_NOT_FIND_IDP
public static final LogoutTokenValidationCode COULD_NOT_FIND_IDP
-
TOKEN_VERIFICATION_WITH_IDP_FAILED
public static final LogoutTokenValidationCode TOKEN_VERIFICATION_WITH_IDP_FAILED
-
MISSING_SID_OR_SUBJECT
public static final LogoutTokenValidationCode MISSING_SID_OR_SUBJECT
-
BACKCHANNEL_LOGOUT_EVENT_MISSING
public static final LogoutTokenValidationCode BACKCHANNEL_LOGOUT_EVENT_MISSING
-
NONCE_CLAIM_IN_TOKEN
public static final LogoutTokenValidationCode NONCE_CLAIM_IN_TOKEN
-
MISSING_IAT_CLAIM
public static final LogoutTokenValidationCode MISSING_IAT_CLAIM
-
LOGOUT_TOKEN_ID_MISSING
public static final LogoutTokenValidationCode LOGOUT_TOKEN_ID_MISSING
-
-
Method Detail
-
values
public static LogoutTokenValidationCode[] 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 (LogoutTokenValidationCode c : LogoutTokenValidationCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LogoutTokenValidationCode 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
-
getErrorMessage
public String getErrorMessage()
-
-