|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<InvocationStyle>
org.apache.ode.bpel.iapi.InvocationStyle
public enum InvocationStyle
Style of invocation supported by the integration layer for a given operation.
Enum Constant Summary | |
---|---|
P2P
Process-2-Process, used when "including" one process in another. |
|
P2P_TRANSACTED
Process-2-Process, used when "including" one process in another. |
|
RELIABLE
Reliable style -- the IL/engine will queue the invocation using the current transaction. |
|
TRANSACTED
Transacted style -- the IL/engine will enroll the operation with the current transaction. |
|
UNRELIABLE
Unreliable style -- the "default" |
Method Summary | |
---|---|
static InvocationStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static InvocationStyle[] |
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 InvocationStyle RELIABLE
public static final InvocationStyle TRANSACTED
public static final InvocationStyle UNRELIABLE
public static final InvocationStyle P2P
public static final InvocationStyle P2P_TRANSACTED
Method Detail |
---|
public static final InvocationStyle[] values()
for(InvocationStyle c : InvocationStyle.values()) System.out.println(c);
public static InvocationStyle 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 |