public enum PasswordStatus extends java.lang.Enum<PasswordStatus>
Enum Constant and Description |
---|
EXPIRATION_WARNING |
EXPIRED |
NORMAL |
TEMPORARY |
Modifier and Type | Method and Description |
---|---|
boolean |
isForceSetPassword()
Returns
true is this status is one of the password states in which the user should
be forced to change the password. |
static PasswordStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PasswordStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PasswordStatus NORMAL
public static final PasswordStatus TEMPORARY
public static final PasswordStatus EXPIRED
public static final PasswordStatus EXPIRATION_WARNING
public static PasswordStatus[] values()
for (PasswordStatus c : PasswordStatus.values()) System.out.println(c);
public static PasswordStatus 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 nullpublic boolean isForceSetPassword()
Copyright © 2003-2024 Appian Corporation. All Rights Reserved.