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 SummaryEnum Constants Enum Constant Description CONFIGURE_RECOVERY_AUTHN_CODESCONFIGURE_TOTPTERMS_AND_CONDITIONSUPDATE_EMAILUPDATE_PASSWORDUPDATE_PROFILEVERIFY_EMAILVERIFY_PROFILE
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static UserModel.RequiredActionvalueOf(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_EMAILpublic static final UserModel.RequiredAction VERIFY_EMAIL 
 - 
UPDATE_PROFILEpublic static final UserModel.RequiredAction UPDATE_PROFILE 
 - 
CONFIGURE_TOTPpublic static final UserModel.RequiredAction CONFIGURE_TOTP 
 - 
CONFIGURE_RECOVERY_AUTHN_CODESpublic static final UserModel.RequiredAction CONFIGURE_RECOVERY_AUTHN_CODES 
 - 
UPDATE_PASSWORDpublic static final UserModel.RequiredAction UPDATE_PASSWORD 
 - 
TERMS_AND_CONDITIONSpublic static final UserModel.RequiredAction TERMS_AND_CONDITIONS 
 - 
VERIFY_PROFILEpublic static final UserModel.RequiredAction VERIFY_PROFILE 
 - 
UPDATE_EMAILpublic static final UserModel.RequiredAction UPDATE_EMAIL 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 
- 
 
-