Enum ModifiablePasswordPolicyStateJSONField
java.lang.Object
java.lang.Enum<ModifiablePasswordPolicyStateJSONField>
com.unboundid.ldap.sdk.unboundidds.ModifiablePasswordPolicyStateJSONField
- All Implemented Interfaces:
Serializable,Comparable<ModifiablePasswordPolicyStateJSONField>,java.lang.constant.Constable
public enum ModifiablePasswordPolicyStateJSONField
extends Enum<ModifiablePasswordPolicyStateJSONField>
This enum defines the set of fields that are supported for use with the
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.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe field (account-activation-time) used to hold the user's account activation time.The field (account-expiration-time) used to hold the user's account expiration time.The field (account-is-disabled) used to indicate whether the user's account has been administratively disabled.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.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.The field (password-changed-time) used to hold the time the user's password was last changed.The field (password-expiration-warned-time) used to hold the time that the user was first warned about an upcoming password expiration. -
Method Summary
Modifier and TypeMethodDescriptionRetrieves the modifiable password policy state JSON field value with the specified name.Retrieves the name for the JSON field.toString()Retrieves a string representation of this modifiable password policy state JSON field.Returns the enum constant of this type with the specified name.values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PASSWORD_CHANGED_TIME
The field (password-changed-time) used to hold the time the user's password was last changed. If present, the value of this field may be a string containing a timestamp in the ISO 8601 format described in RFC 3339, or it may be the JSON null value to indicate that the user does not have a password changed time. Note that setting this field tonullwill cause the server to fall back to using the entry's createTimestamp value (if available) as the last changed time. -
ACCOUNT_IS_DISABLED
The field (account-is-disabled) used to indicate whether the user's account has been administratively disabled. -
ACCOUNT_ACTIVATION_TIME
The field (account-activation-time) used to hold the user's account activation time. If present, the value of this field may be a string containing a timestamp in the ISO 8601 format described in RFC 3339, or it may be the JSON null value to indicate that the user does not have an account activation time. -
ACCOUNT_EXPIRATION_TIME
The field (account-expiration-time) used to hold the user's account expiration time. If present, the value of this field may be a string containing a timestamp in the ISO 8601 format described in RFC 3339, or it may be the JSON null value to indicate that the user does not have an account expiration time. -
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. -
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. If present, the value of this field may be a string containing a timestamp in the ISO 8601 format described in RFC 3339, or it may be the JSON null value to indicate that the user does not have a password expiration warned time. -
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.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getFieldName
Retrieves the name for the JSON field.- Returns:
- The name for the JSON field.
-
forName
Retrieves the modifiable password policy state JSON field value with the specified name.- Parameters:
name- The name of the password policy state JSON field value to retrieve. It must not benull.- Returns:
- The modifiable password policy state JSON field value with the
specified name, or
nullif there is no value with the specified name.
-
toString
Retrieves a string representation of this modifiable password policy state JSON field.- Overrides:
toStringin classEnum<ModifiablePasswordPolicyStateJSONField>- Returns:
- A string representation of this password policy state JSON field.
-