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 SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetErrorMessage()static LogoutTokenValidationCodevalueOf(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_SUCCESSpublic static final LogoutTokenValidationCode VALIDATION_SUCCESS 
 - 
DECODE_TOKEN_FAILEDpublic static final LogoutTokenValidationCode DECODE_TOKEN_FAILED 
 - 
COULD_NOT_FIND_IDPpublic static final LogoutTokenValidationCode COULD_NOT_FIND_IDP 
 - 
TOKEN_VERIFICATION_WITH_IDP_FAILEDpublic static final LogoutTokenValidationCode TOKEN_VERIFICATION_WITH_IDP_FAILED 
 - 
MISSING_SID_OR_SUBJECTpublic static final LogoutTokenValidationCode MISSING_SID_OR_SUBJECT 
 - 
BACKCHANNEL_LOGOUT_EVENT_MISSINGpublic static final LogoutTokenValidationCode BACKCHANNEL_LOGOUT_EVENT_MISSING 
 - 
NONCE_CLAIM_IN_TOKENpublic static final LogoutTokenValidationCode NONCE_CLAIM_IN_TOKEN 
 - 
MISSING_IAT_CLAIMpublic static final LogoutTokenValidationCode MISSING_IAT_CLAIM 
 - 
LOGOUT_TOKEN_ID_MISSINGpublic static final LogoutTokenValidationCode LOGOUT_TOKEN_ID_MISSING 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 - 
getErrorMessagepublic String getErrorMessage() 
 
- 
 
-