public enum ModifiablePasswordPolicyStateJSONField extends java.lang.Enum<ModifiablePasswordPolicyStateJSONField>
ModifiablePasswordPolicyStateJSON
object.
NOTE: This class, and other classes within the
com.unboundid.ldap.sdk.unboundidds
package structure, are only
supported for use against Ping Identity, UnboundID, and
Nokia/Alcatel-Lucent 8661 server products. These classes provide support
for proprietary functionality or for external specifications that are not
considered stable or mature enough to be guaranteed to work in an
interoperable way with other types of LDAP servers.
Enum Constant and Description |
---|
ACCOUNT_ACTIVATION_TIME
The field (account-activation-time) used to hold the user's account
activation time.
|
ACCOUNT_EXPIRATION_TIME
The field (account-expiration-time) used to hold the user's account
expiration time.
|
ACCOUNT_IS_DISABLED
The field (account-is-disabled) used to indicate whether the user's account
has been administratively disabled.
|
ACCOUNT_IS_FAILURE_LOCKED
The field (account-is-failure-locked) used to indicate whether the user's
account is locked as a result of too many failed authentication attempts.
|
MUST_CHANGE_PASSWORD
The field (must-change-password) used to indicate whether the user must
change their password before they will be permitted to request any other
operations in the server.
|
PASSWORD_CHANGED_TIME
The field (password-changed-time) used to hold the time the user's password
was last changed.
|
PASSWORD_EXPIRATION_WARNED_TIME
The field (password-expiration-warned-time) used to hold the time that the
user was first warned about an upcoming password expiration.
|
Modifier and Type | Method and Description |
---|---|
static ModifiablePasswordPolicyStateJSONField |
forName(java.lang.String name)
Retrieves the modifiable password policy state JSON field value with the
specified name.
|
java.lang.String |
getFieldName()
Retrieves the name for the JSON field.
|
java.lang.String |
toString()
Retrieves a string representation of this modifiable password policy state
JSON field.
|
static ModifiablePasswordPolicyStateJSONField |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModifiablePasswordPolicyStateJSONField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModifiablePasswordPolicyStateJSONField PASSWORD_CHANGED_TIME
null
will
cause the server to fall back to using the entry's createTimestamp value
(if available) as the last changed time.public static final ModifiablePasswordPolicyStateJSONField ACCOUNT_IS_DISABLED
public static final ModifiablePasswordPolicyStateJSONField ACCOUNT_ACTIVATION_TIME
public static final ModifiablePasswordPolicyStateJSONField ACCOUNT_EXPIRATION_TIME
public static final ModifiablePasswordPolicyStateJSONField ACCOUNT_IS_FAILURE_LOCKED
public static final ModifiablePasswordPolicyStateJSONField PASSWORD_EXPIRATION_WARNED_TIME
public static final ModifiablePasswordPolicyStateJSONField MUST_CHANGE_PASSWORD
public static ModifiablePasswordPolicyStateJSONField[] values()
for (ModifiablePasswordPolicyStateJSONField c : ModifiablePasswordPolicyStateJSONField.values()) System.out.println(c);
public static ModifiablePasswordPolicyStateJSONField 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@NotNull public java.lang.String getFieldName()
@Nullable public static ModifiablePasswordPolicyStateJSONField forName(@NotNull java.lang.String name)
name
- The name of the password policy state JSON field value to
retrieve. It must not be null
.null
if there is no value with the
specified name.@NotNull public java.lang.String toString()
toString
in class java.lang.Enum<ModifiablePasswordPolicyStateJSONField>