|
CICS® Transaction Gateway Programming Reference v1.1.0.0 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<FlowType>
com.ibm.ctg.monitoring.FlowType
public enum FlowType
Flows on requests are of different types. They are part or otherwise
of different TransactionType
s
and different RequestType
s.
Enum Constant Summary | |
---|---|
EciStatus
Status request (including list systems). |
|
EciSynconreturn
ECI synconreturn. |
|
ExtendedModeCommit
Extended mode commit flow. |
|
ExtendedModeEci
Extended mode ECI flow. |
|
ExtendedModeRollback
Extended mode roll back flow. |
|
Unknown
Flow type that is not yet defined. |
|
Xa1PhaseCommit
Optimized one phase commit on XA transaction. |
|
XaCommit
Commit an XA transaction. |
|
XaEci
ECI flow as part of an XA transaction. |
|
XaForget
Forget an XA transaction. |
|
XaPrepare
Prepare the XA transaction. |
|
XaRecover
Not part of an XA transaction. |
|
XaRollback
Roll back an XA transaction. |
|
XaStart
Start of an XA transaction. |
Method Summary | |
---|---|
RequestType |
getRequestType()
|
TransactionType |
getTransactionType()
|
static FlowType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static FlowType[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final FlowType Unknown
public static final FlowType EciStatus
public static final FlowType EciSynconreturn
public static final FlowType ExtendedModeEci
public static final FlowType ExtendedModeCommit
public static final FlowType ExtendedModeRollback
public static final FlowType XaStart
public static final FlowType XaEci
public static final FlowType Xa1PhaseCommit
public static final FlowType XaPrepare
public static final FlowType XaCommit
public static final FlowType XaRollback
public static final FlowType XaForget
public static final FlowType XaRecover
Method Detail |
---|
public static final FlowType[] values()
for(FlowType c : FlowType.values()) System.out.println(c);
public static FlowType 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 namepublic TransactionType getTransactionType()
public RequestType getRequestType()
|
©Copyright IBM Corp. 1994, 2014 Legal |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |