public enum FlowType extends java.lang.Enum<FlowType>
TransactionType
s
and different RequestType
s.Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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 are declared.
|
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
RequestData
Map.public static 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 namejava.lang.NullPointerException
- if the argument is nullpublic TransactionType getTransactionType()
public RequestType getRequestType()