|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<FormReason> org.apache.sling.auth.form.FormReason
public enum FormReason
Enum Constant Summary | |
---|---|
INVALID_CREDENTIALS
The login form is request because the credentials previously entered very not valid to login to the repository. |
|
TIMEOUT
The login form is requested because an existing session has timed out and the credentials have to be entered again. |
Method Summary | |
---|---|
String |
toString()
Returns the message set when constructing this instance. |
static FormReason |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static FormReason[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final FormReason INVALID_CREDENTIALS
public static final FormReason TIMEOUT
Method Detail |
---|
public static final FormReason[] values()
for(FormReason c : FormReason.values()) System.out.println(c);
public static FormReason valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified namepublic String toString()
name()
method.
toString
in class Enum<FormReason>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |