|
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<RequestPayloadType>
com.ibm.ctg.ha.RequestPayloadType
public enum RequestPayloadType
An enumeration of the ECI payload types. Payload types represent the method used to transfer data between CICS TG and CICS programs. This enumeration is used by CICS request exit applications. The payload type allows a request exit to select a CICS server based on the payload of an ECI request. For example, in a configuration where only a subset of the available CICS servers are configured to process channels and containers, a request exit might use the payload information to redirect requests to a server that has the capability to process the request. The default payload type is COMMAREA.
RequestDetails
,
CICSRequestExit
Enum Constant Summary | |
---|---|
CHANNEL
The payload type is channels and containers. |
|
COMMAREA
The payload type is COMMAREA. |
Method Summary | |
---|---|
static RequestPayloadType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static RequestPayloadType[] |
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 RequestPayloadType CHANNEL
public static final RequestPayloadType COMMAREA
Method Detail |
---|
public static final RequestPayloadType[] values()
for(RequestPayloadType c : RequestPayloadType.values()) System.out.println(c);
public static RequestPayloadType 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 |