|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<MessageExchange.Status>
org.apache.ode.bpel.iapi.MessageExchange.Status
public static enum MessageExchange.Status
Enumeration of the possible states for the message exchange.
Enum Constant Summary | |
---|---|
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". |
Method Summary | |
---|---|
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're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
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
Method Detail |
---|
public static final 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 name
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |