public enum RequestDetails extends java.lang.Enum<RequestDetails>
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 and Description |
---|
ClientLocation
The location of the Client application (IP address).
|
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 contains the return code from the last failed call.
|
LastServer
If the exit is being retried due to a retryable error then this
field contains the last server the request was sent to.
|
PayloadType
The type of payload specified on the request.
|
Program
The CICS program specified on the request.
|
RequestType
The call type of the request.
|
RetryCount
The number of times this 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
The transaction ID specified on the request.
|
Userid
The user ID specified on the request.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDataType()
Get the type of data for this entry.
|
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 are declared.
|
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 ClientLocation
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
public static 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 namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getDataType()