public static enum MessageExchange.Status extends java.lang.Enum<MessageExchange.Status>
Enum Constant and Description |
---|
ASYNC
Waiting for an asynchronous response from the "server"
|
COMPLETED_FAILURE
Message exchange completed with a failure.
|
COMPLETED_FAULT
Message exchange completed with a fault.
|
COMPLETED_OK
Message exchange completed succesfully.
|
FAILURE
Processing a failure.
|
FAULT
Processing the fault received from the "server".
|
NEW
New message exchange, has not been "invoked"
|
REQUEST
The request is being sent to the "server"
|
RESPONSE
Processing the response received from the "server".
|
Modifier and Type | Method and Description |
---|---|
static MessageExchange.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MessageExchange.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageExchange.Status NEW
public static final MessageExchange.Status REQUEST
public static final MessageExchange.Status ASYNC
public static final MessageExchange.Status RESPONSE
public static final MessageExchange.Status FAULT
public static final MessageExchange.Status FAILURE
public static final MessageExchange.Status COMPLETED_OK
public static final MessageExchange.Status COMPLETED_FAULT
public static final MessageExchange.Status COMPLETED_FAILURE
public static MessageExchange.Status[] values()
for (MessageExchange.Status c : MessageExchange.Status.values()) System.out.println(c);
public static MessageExchange.Status 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