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 Summary
Enum Constants Enum Constant Description AUTHENTICATE
LOGGED_OUT
LOGGING_OUT
OAUTH_GRANT
REQUIRED_ACTIONS
USER_CODE_VERIFICATION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CommonClientSessionModel.Action
valueOf(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_GRANT
public static final CommonClientSessionModel.Action OAUTH_GRANT
-
AUTHENTICATE
public static final CommonClientSessionModel.Action AUTHENTICATE
-
LOGGED_OUT
public static final CommonClientSessionModel.Action LOGGED_OUT
-
LOGGING_OUT
public static final CommonClientSessionModel.Action LOGGING_OUT
-
REQUIRED_ACTIONS
public static final CommonClientSessionModel.Action REQUIRED_ACTIONS
-
USER_CODE_VERIFICATION
public static final CommonClientSessionModel.Action USER_CODE_VERIFICATION
-
-
Method Detail
-
values
public 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
-
valueOf
public 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 nameNullPointerException
- if the argument is null
-
-