public enum UserStatus extends Enum<UserStatus> implements com.google.protobuf.ProtocolMessageEnum
aserto.directory.schema.v3.UserStatus| Enum Constant and Description |
|---|
UNRECOGNIZED |
USER_STATUS_ACTIVE
Active status, is when:
* An admin adds a user and sets the user password without requiring email verification.
|
USER_STATUS_DEPROVISIONED
Deprovisioned status, is when an administrator explicitly deactivates or deprovisions/deletes the account.
|
USER_STATUS_LOCKED_OUT
Locked out status, is when the user exceeds the number of login attempts defined in the login policy.
|
USER_STATUS_PASSWORD_EXPIRED
Password expired, status when the users' password has expired and the account requires an update to the password before a user is granted access.
|
USER_STATUS_PROVISIONED
Provisioned status, is when the user object is provisioned, but the user has not provided verification by clicking through the activation email or provided a password.
|
USER_STATUS_RECOVERY
Recovery status, when the user requests a password reset or an admin initiates one on their behalf.
|
USER_STATUS_STAGED
Staged status, is when the user object is first created, before the activation flow is initiated, or if there is a pending admin action.
|
USER_STATUS_SUSPENDED
Suspended status, when an admin explicitly suspends the user account.
|
USER_STATUS_UNKNOWN
User status undefined
|
| Modifier and Type | Field and Description |
|---|---|
static int |
USER_STATUS_ACTIVE_VALUE
Active status, is when:
* An admin adds a user and sets the user password without requiring email verification.
|
static int |
USER_STATUS_DEPROVISIONED_VALUE
Deprovisioned status, is when an administrator explicitly deactivates or deprovisions/deletes the account.
|
static int |
USER_STATUS_LOCKED_OUT_VALUE
Locked out status, is when the user exceeds the number of login attempts defined in the login policy.
|
static int |
USER_STATUS_PASSWORD_EXPIRED_VALUE
Password expired, status when the users' password has expired and the account requires an update to the password before a user is granted access.
|
static int |
USER_STATUS_PROVISIONED_VALUE
Provisioned status, is when the user object is provisioned, but the user has not provided verification by clicking through the activation email or provided a password.
|
static int |
USER_STATUS_RECOVERY_VALUE
Recovery status, when the user requests a password reset or an admin initiates one on their behalf.
|
static int |
USER_STATUS_STAGED_VALUE
Staged status, is when the user object is first created, before the activation flow is initiated, or if there is a pending admin action.
|
static int |
USER_STATUS_SUSPENDED_VALUE
Suspended status, when an admin explicitly suspends the user account.
|
static int |
USER_STATUS_UNKNOWN_VALUE
User status undefined
|
| Modifier and Type | Method and Description |
|---|---|
static UserStatus |
forNumber(int value) |
static com.google.protobuf.Descriptors.EnumDescriptor |
getDescriptor() |
com.google.protobuf.Descriptors.EnumDescriptor |
getDescriptorForType() |
int |
getNumber() |
com.google.protobuf.Descriptors.EnumValueDescriptor |
getValueDescriptor() |
static com.google.protobuf.Internal.EnumLiteMap<UserStatus> |
internalGetValueMap() |
static UserStatus |
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) |
static UserStatus |
valueOf(int value)
Deprecated.
Use
forNumber(int) instead. |
static UserStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserStatus USER_STATUS_UNKNOWN
User status undefined
USER_STATUS_UNKNOWN = 0;public static final UserStatus USER_STATUS_STAGED
Staged status, is when the user object is first created, before the activation flow is initiated, or if there is a pending admin action.
USER_STATUS_STAGED = 1;public static final UserStatus USER_STATUS_PROVISIONED
Provisioned status, is when the user object is provisioned, but the user has not provided verification by clicking through the activation email or provided a password.
USER_STATUS_PROVISIONED = 2;public static final UserStatus USER_STATUS_ACTIVE
Active status, is when: * An admin adds a user and sets the user password without requiring email verification. * An admin adds a user, sets the user password, and requires the user to set their password when they first sign-in. * A user self-registers into a custom app or IDP and email verification is not required. * An admin explicitly activates the user.
USER_STATUS_ACTIVE = 3;public static final UserStatus USER_STATUS_RECOVERY
Recovery status, when the user requests a password reset or an admin initiates one on their behalf.
USER_STATUS_RECOVERY = 4;public static final UserStatus USER_STATUS_PASSWORD_EXPIRED
Password expired, status when the users' password has expired and the account requires an update to the password before a user is granted access.
USER_STATUS_PASSWORD_EXPIRED = 5;public static final UserStatus USER_STATUS_LOCKED_OUT
Locked out status, is when the user exceeds the number of login attempts defined in the login policy.
USER_STATUS_LOCKED_OUT = 6;public static final UserStatus USER_STATUS_SUSPENDED
Suspended status, when an admin explicitly suspends the user account.
USER_STATUS_SUSPENDED = 7;public static final UserStatus USER_STATUS_DEPROVISIONED
Deprovisioned status, is when an administrator explicitly deactivates or deprovisions/deletes the account.
USER_STATUS_DEPROVISIONED = 8;public static final UserStatus UNRECOGNIZED
public static final int USER_STATUS_UNKNOWN_VALUE
User status undefined
USER_STATUS_UNKNOWN = 0;public static final int USER_STATUS_STAGED_VALUE
Staged status, is when the user object is first created, before the activation flow is initiated, or if there is a pending admin action.
USER_STATUS_STAGED = 1;public static final int USER_STATUS_PROVISIONED_VALUE
Provisioned status, is when the user object is provisioned, but the user has not provided verification by clicking through the activation email or provided a password.
USER_STATUS_PROVISIONED = 2;public static final int USER_STATUS_ACTIVE_VALUE
Active status, is when: * An admin adds a user and sets the user password without requiring email verification. * An admin adds a user, sets the user password, and requires the user to set their password when they first sign-in. * A user self-registers into a custom app or IDP and email verification is not required. * An admin explicitly activates the user.
USER_STATUS_ACTIVE = 3;public static final int USER_STATUS_RECOVERY_VALUE
Recovery status, when the user requests a password reset or an admin initiates one on their behalf.
USER_STATUS_RECOVERY = 4;public static final int USER_STATUS_PASSWORD_EXPIRED_VALUE
Password expired, status when the users' password has expired and the account requires an update to the password before a user is granted access.
USER_STATUS_PASSWORD_EXPIRED = 5;public static final int USER_STATUS_LOCKED_OUT_VALUE
Locked out status, is when the user exceeds the number of login attempts defined in the login policy.
USER_STATUS_LOCKED_OUT = 6;public static final int USER_STATUS_SUSPENDED_VALUE
Suspended status, when an admin explicitly suspends the user account.
USER_STATUS_SUSPENDED = 7;public static final int USER_STATUS_DEPROVISIONED_VALUE
Deprovisioned status, is when an administrator explicitly deactivates or deprovisions/deletes the account.
USER_STATUS_DEPROVISIONED = 8;public static UserStatus[] values()
for (UserStatus c : UserStatus.values()) System.out.println(c);
public static UserStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic final int getNumber()
getNumber in interface com.google.protobuf.Internal.EnumLitegetNumber in interface com.google.protobuf.ProtocolMessageEnum@Deprecated public static UserStatus valueOf(int value)
forNumber(int) instead.value - The numeric wire value of the corresponding enum entry.public static UserStatus forNumber(int value)
value - The numeric wire value of the corresponding enum entry.public static com.google.protobuf.Internal.EnumLiteMap<UserStatus> internalGetValueMap()
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnumpublic final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnumpublic static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
public static UserStatus valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Copyright © 2024. All rights reserved.