Package org.gatein.wci.authentication
Enum AuthenticationEventType
- java.lang.Object
-
- java.lang.Enum<AuthenticationEventType>
-
- org.gatein.wci.authentication.AuthenticationEventType
-
- All Implemented Interfaces:
Serializable,Comparable<AuthenticationEventType>
public enum AuthenticationEventType extends Enum<AuthenticationEventType>
- Author:
- Julien Viet
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AuthenticationEventTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AuthenticationEventType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOGIN
public static final AuthenticationEventType LOGIN
-
FAILED
public static final AuthenticationEventType FAILED
-
-
Method Detail
-
values
public static AuthenticationEventType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AuthenticationEventType c : AuthenticationEventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuthenticationEventType 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 nameNullPointerException- if the argument is null
-
-