public enum UserValidationStatus extends java.lang.Enum<UserValidationStatus>
| Enum Constant and Description |
|---|
ACTIVE_WITH_GENERATED_PASSWORD
The user is directly active, and had the generated password
|
ACTIVE_WITH_MANUAL_PASSWORD
The user is directly active, and had the password manually entered
|
ACTIVE_WITH_SCRIPT_PASSWORD
The user is directly active, and had the password handled by a script
|
PENDING_ADMIN_ACTIVATION
The administrator needs to move the user to an active group
|
| Modifier and Type | Method and Description |
|---|---|
static UserValidationStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UserValidationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserValidationStatus PENDING_ADMIN_ACTIVATION
public static final UserValidationStatus ACTIVE_WITH_MANUAL_PASSWORD
public static final UserValidationStatus ACTIVE_WITH_GENERATED_PASSWORD
public static final UserValidationStatus ACTIVE_WITH_SCRIPT_PASSWORD
public static UserValidationStatus[] values()
for (UserValidationStatus c : UserValidationStatus.values()) System.out.println(c);
public static UserValidationStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null