Package org.keycloak.sessions
Enum CommonClientSessionModel.Action
- java.lang.Object
- 
- java.lang.Enum<CommonClientSessionModel.Action>
- 
- org.keycloak.sessions.CommonClientSessionModel.Action
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<CommonClientSessionModel.Action>
 - Enclosing interface:
- CommonClientSessionModel
 
 public static enum CommonClientSessionModel.Action extends Enum<CommonClientSessionModel.Action> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description AUTHENTICATELOGGED_OUTLOGGING_OUTOAUTH_GRANTREQUIRED_ACTIONSUSER_CODE_VERIFICATION
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static CommonClientSessionModel.ActionvalueOf(String name)Returns the enum constant of this type with the specified name.static CommonClientSessionModel.Action[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
OAUTH_GRANTpublic static final CommonClientSessionModel.Action OAUTH_GRANT 
 - 
AUTHENTICATEpublic static final CommonClientSessionModel.Action AUTHENTICATE 
 - 
LOGGED_OUTpublic static final CommonClientSessionModel.Action LOGGED_OUT 
 - 
LOGGING_OUTpublic static final CommonClientSessionModel.Action LOGGING_OUT 
 - 
REQUIRED_ACTIONSpublic static final CommonClientSessionModel.Action REQUIRED_ACTIONS 
 - 
USER_CODE_VERIFICATIONpublic static final CommonClientSessionModel.Action USER_CODE_VERIFICATION 
 
- 
 - 
Method Detail- 
valuespublic static CommonClientSessionModel.Action[] 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 (CommonClientSessionModel.Action c : CommonClientSessionModel.Action.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static CommonClientSessionModel.Action 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
 
 
- 
 
-