|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<PasswordCheckResult>
com.sap.security.um.user.PasswordCheckResult
public enum PasswordCheckResult
This enumeration provides the codes of a password check operation.
Enum Constant Summary | |
---|---|
FAILED_UNKNOWN_REASON
Authentication failed with reason other than the reasons described above. |
|
PWD_CHANGE_REQUIRED
The provided password is valid, but has to be changed. |
|
PWD_DISABLED
The password of the user is disabled. |
|
PWD_EXPIRED
The password is expired because max. |
|
PWD_LOCKED
The password is locked because of too many failed password checks. |
|
PWD_OK
The provided password is valid. |
|
PWD_WRONG
The provided password does not match the stored password. |
|
USER_INACTIVE
The user is in status inactive. |
Method Summary | |
---|---|
static PasswordCheckResult |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static PasswordCheckResult[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final PasswordCheckResult PWD_DISABLED
public static final PasswordCheckResult PWD_EXPIRED
public static final PasswordCheckResult PWD_LOCKED
public static final PasswordCheckResult PWD_WRONG
public static final PasswordCheckResult PWD_CHANGE_REQUIRED
public static final PasswordCheckResult PWD_OK
public static final PasswordCheckResult USER_INACTIVE
public static final PasswordCheckResult FAILED_UNKNOWN_REASON
Method Detail |
---|
public static PasswordCheckResult[] values()
for (PasswordCheckResult c : PasswordCheckResult.values()) System.out.println(c);
public static PasswordCheckResult valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |