public enum StatusCode extends Enum<StatusCode>
Modifier and Type | Method and Description |
---|---|
static StatusCode |
fromUrn(String urn) |
String |
getDescription() |
String |
toString() |
static StatusCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatusCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatusCode SUCCESS
public static final StatusCode REQUESTER
public static final StatusCode RESPONDER
public static final StatusCode VERSION_MISMATCH
public static final StatusCode AUTHENTICATION_FAILED
public static final StatusCode INVALID_ATTRIBUTE
public static final StatusCode INVALID_NAME_ID
public static final StatusCode NO_AUTH_CONTEXT
public static final StatusCode NO_AVAILABLE_IDP
public static final StatusCode NO_PASSIVE
public static final StatusCode NO_SUPPORTED_IDP
public static final StatusCode PARTIAL_LOGOUT
public static final StatusCode PROXY_COUNT_EXCEEDED
public static final StatusCode REQUEST_DENIED
public static final StatusCode REQUEST_UNSUPPORTED
public static final StatusCode REQUEST_VERSION_DEPRECATED
public static final StatusCode REQUEST_VERSION_TOO_HIGH
public static final StatusCode REQUEST_VERSION_TOO_LOW
public static final StatusCode RESOURCE_NOT_RECOGNIZED
public static final StatusCode TOO_MANY_RESPONSES
public static final StatusCode UNKNOWN_PRINCIPAL
public static final StatusCode UNSUPPORTED_BINDING
public static final StatusCode UNKNOWN_STATUS
public static StatusCode[] values()
for (StatusCode c : StatusCode.values()) System.out.println(c);
public static StatusCode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static StatusCode fromUrn(String urn)
public String getDescription()
public String toString()
toString
in class Enum<StatusCode>