org.apache.sling.auth.form
Enum FormReason

java.lang.Object
  extended by java.lang.Enum<FormReason>
      extended by org.apache.sling.auth.form.FormReason
All Implemented Interfaces:
Serializable, Comparable<FormReason>

public enum FormReason
extends 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

INVALID_CREDENTIALS

public static final FormReason INVALID_CREDENTIALS
The login form is request because the credentials previously entered very not valid to login to the repository.


TIMEOUT

public static final FormReason TIMEOUT
The login form is requested because an existing session has timed out and the credentials have to be entered again.

Method Detail

values

public static final FormReason[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(FormReason c : FormReason.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static FormReason valueOf(String name)
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 name

toString

public String toString()
Returns the message set when constructing this instance. To get the official name call the name() method.

Overrides:
toString in class Enum<FormReason>


Copyright © 2007-2011 The Apache Software Foundation. All Rights Reserved.