|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<SharedDataSet.PasswordStatus>
com.sage.accpac.sm.SharedDataSet.PasswordStatus
public static enum SharedDataSet.PasswordStatus
The possible statuses that can be returned when processing passwords (e.g. when changing them or checking them).
Enum Constant Summary | |
---|---|
AccountDisabled
the user account has been disabled |
|
AlreadyUsed
the new password provided has been used too recently |
|
ContainsInvalidCharacters
the new password contains invalid characters |
|
HasNonLetterFirst
the new password does not start with a letter |
|
IncorrectUserOrPassword
the user name and/or password is incorrect |
|
LockedOut
the user is locked out |
|
MustChangePassword
the user must change their password |
|
NotAllowedToChange
the user is not allowed to change their password |
|
NotAtThisTime
the user is only allowed to access their account at certain times and they are not allowed to at this time. |
|
NotComplex
the new password provided is not sufficiently complex |
|
Success
total success |
|
TooLong
the new password provided is too long |
|
TooShort
the new password provided is too short |
Method Summary | |
---|---|
static SharedDataSet.PasswordStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static SharedDataSet.PasswordStatus[] |
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 SharedDataSet.PasswordStatus Success
public static final SharedDataSet.PasswordStatus MustChangePassword
public static final SharedDataSet.PasswordStatus LockedOut
public static final SharedDataSet.PasswordStatus AccountDisabled
public static final SharedDataSet.PasswordStatus NotComplex
public static final SharedDataSet.PasswordStatus TooShort
public static final SharedDataSet.PasswordStatus NotAtThisTime
public static final SharedDataSet.PasswordStatus AlreadyUsed
public static final SharedDataSet.PasswordStatus IncorrectUserOrPassword
public static final SharedDataSet.PasswordStatus NotAllowedToChange
public static final SharedDataSet.PasswordStatus TooLong
public static final SharedDataSet.PasswordStatus ContainsInvalidCharacters
public static final SharedDataSet.PasswordStatus HasNonLetterFirst
Method Detail |
---|
public static SharedDataSet.PasswordStatus[] values()
for (SharedDataSet.PasswordStatus c : SharedDataSet.PasswordStatus.values()) System.out.println(c);
public static SharedDataSet.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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |