public static enum FaultMessage.Code extends java.lang.Enum<FaultMessage.Code>
| Enum Constant and Description |
|---|
ACCESS_DENIED |
AUTHENTICATION_FAILED |
CLIENT_CALL_CANCELLED |
CLIENT_CALL_FAILED |
CLIENT_CALL_TIMED_OUT |
INVALID_CREDENTIALS |
NOT_LOGGED_IN |
OPTIMISTIC_LOCK |
SERVER_CALL_FAILED |
SESSION_EXPIRED |
UNKNOWN |
VALIDATION_FAILED |
| Modifier and Type | Method and Description |
|---|---|
static FaultMessage.Code |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FaultMessage.Code[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FaultMessage.Code UNKNOWN
public static final FaultMessage.Code CLIENT_CALL_FAILED
public static final FaultMessage.Code CLIENT_CALL_TIMED_OUT
public static final FaultMessage.Code CLIENT_CALL_CANCELLED
public static final FaultMessage.Code SERVER_CALL_FAILED
public static final FaultMessage.Code INVALID_CREDENTIALS
public static final FaultMessage.Code AUTHENTICATION_FAILED
public static final FaultMessage.Code NOT_LOGGED_IN
public static final FaultMessage.Code SESSION_EXPIRED
public static final FaultMessage.Code ACCESS_DENIED
public static final FaultMessage.Code VALIDATION_FAILED
public static final FaultMessage.Code OPTIMISTIC_LOCK
public static FaultMessage.Code[] values()
for (FaultMessage.Code c : FaultMessage.Code.values()) System.out.println(c);
public static FaultMessage.Code valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null