Enum SyncopeConsoleSession.Error
- java.lang.Object
-
- java.lang.Enum<SyncopeConsoleSession.Error>
-
- org.apache.syncope.client.console.SyncopeConsoleSession.Error
-
- All Implemented Interfaces:
Serializable
,Comparable<SyncopeConsoleSession.Error>
- Enclosing class:
- SyncopeConsoleSession
public static enum SyncopeConsoleSession.Error extends Enum<SyncopeConsoleSession.Error>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTHORIZATION
REST
SESSION_EXPIRED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
fallback()
String
key()
static SyncopeConsoleSession.Error
valueOf(String name)
Returns the enum constant of this type with the specified name.static SyncopeConsoleSession.Error[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SESSION_EXPIRED
public static final SyncopeConsoleSession.Error SESSION_EXPIRED
-
AUTHORIZATION
public static final SyncopeConsoleSession.Error AUTHORIZATION
-
REST
public static final SyncopeConsoleSession.Error REST
-
-
Method Detail
-
values
public static SyncopeConsoleSession.Error[] 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 (SyncopeConsoleSession.Error c : SyncopeConsoleSession.Error.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SyncopeConsoleSession.Error 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
-
key
public String key()
-
fallback
public String fallback()
-
-