|
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<RequestCallType>
com.ibm.ctg.ha.RequestCallType
public enum RequestCallType
An enumeration of the request types that can be seen by a CICS request exit, allowing the exit to select a CICS server based on the type of request being flowed.
Enum Constant Summary | |
---|---|
ECI_EXTENDED
An extended transaction call |
|
ECI_EXTENDED_TPN
An extended transaction call with eci_tpn set |
|
ECI_SYNC
A synchronous call |
|
ECI_SYNC_TPN
A synchronous call with eci_tpn set |
|
XA
An XA transaction |
Method Summary | |
---|---|
static RequestCallType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static RequestCallType[] |
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 RequestCallType ECI_SYNC
public static final RequestCallType ECI_SYNC_TPN
public static final RequestCallType ECI_EXTENDED
public static final RequestCallType ECI_EXTENDED_TPN
public static final RequestCallType XA
Method Detail |
---|
public static final RequestCallType[] values()
for(RequestCallType c : RequestCallType.values()) System.out.println(c);
public static RequestCallType 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
|
©Copyright IBM Corp. 1994, 2014 Legal |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |