|
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<RequestDetails>
com.ibm.ctg.ha.RequestDetails
public enum RequestDetails
The RequestDetails enum contains the definitions of the data that
is passed through to the CICSRequestExit
getCICSServer()
method.
The values are the keys in the Map parameter which then have a value of
the type specified by the data type.
Enum Constant Summary | |
---|---|
DefaultServer
The CICS server that is configured as the default in the configuration file. |
|
LastError
If the exit is being retried due to a retryable error then this field will contain the return code from the failed call. |
|
LastServer
If the exit is being retried due to a retryable error then this field will contain the last server the request was sent to. |
|
PayloadType
For ECI requests, the type of payload specified on the request. |
|
Program
For ECI requests, the CICS program specified on the request. |
|
RequestType
The type of request that is being changed by this exit. |
|
RetryCount
The number of times the exit has been called after a request has failed with a retryable error. |
|
Server
The CICS server originally specified on the request. |
|
SystemName
The name of the system where this Gateway daemon is running. |
|
Transid
For ECI requests, the transaction ID specified on the request. |
|
Userid
The user ID specified on the request. |
Method Summary | |
---|---|
java.lang.String |
getDataType()
|
static RequestDetails |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static RequestDetails[] |
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 RequestDetails Server
public static final RequestDetails DefaultServer
public static final RequestDetails Userid
public static final RequestDetails Transid
public static final RequestDetails Program
public static final RequestDetails SystemName
public static final RequestDetails RetryCount
public static final RequestDetails LastError
public static final RequestDetails LastServer
public static final RequestDetails RequestType
RequestCallType
public static final RequestDetails PayloadType
RequestPayloadType
Method Detail |
---|
public static final RequestDetails[] values()
for(RequestDetails c : RequestDetails.values()) System.out.println(c);
public static RequestDetails 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 java.lang.String getDataType()
|
©Copyright IBM Corp. 1994, 2014 Legal |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |