Package org.keycloak.models
Enum UserModel.RequiredAction
- java.lang.Object
-
- java.lang.Enum<UserModel.RequiredAction>
-
- org.keycloak.models.UserModel.RequiredAction
-
- All Implemented Interfaces:
Serializable
,Comparable<UserModel.RequiredAction>
- Enclosing interface:
- UserModel
public static enum UserModel.RequiredAction extends Enum<UserModel.RequiredAction>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONFIGURE_RECOVERY_AUTHN_CODES
CONFIGURE_TOTP
TERMS_AND_CONDITIONS
UPDATE_EMAIL
UPDATE_PASSWORD
UPDATE_PROFILE
VERIFY_EMAIL
VERIFY_PROFILE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UserModel.RequiredAction
valueOf(String name)
Returns the enum constant of this type with the specified name.static UserModel.RequiredAction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VERIFY_EMAIL
public static final UserModel.RequiredAction VERIFY_EMAIL
-
UPDATE_PROFILE
public static final UserModel.RequiredAction UPDATE_PROFILE
-
CONFIGURE_TOTP
public static final UserModel.RequiredAction CONFIGURE_TOTP
-
CONFIGURE_RECOVERY_AUTHN_CODES
public static final UserModel.RequiredAction CONFIGURE_RECOVERY_AUTHN_CODES
-
UPDATE_PASSWORD
public static final UserModel.RequiredAction UPDATE_PASSWORD
-
TERMS_AND_CONDITIONS
public static final UserModel.RequiredAction TERMS_AND_CONDITIONS
-
VERIFY_PROFILE
public static final UserModel.RequiredAction VERIFY_PROFILE
-
UPDATE_EMAIL
public static final UserModel.RequiredAction UPDATE_EMAIL
-
-
Method Detail
-
values
public static UserModel.RequiredAction[] 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 (UserModel.RequiredAction c : UserModel.RequiredAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UserModel.RequiredAction 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
-
-