public enum RequestEvent extends java.lang.Enum<RequestEvent>
eventFired()
method of the RequestExit.| Enum Constant and Description |
|---|
Command
This exit point fires when the Gateway daemon receives an
administration request for the request monitoring exit
which includes a command string.
|
RequestDetails
This exit point fires just before a request is sent to CICS from
the Gateway daemon
(
Gateway
FlowTopology) classes. |
RequestEntry
This exit point fires just after a request has entered
the Java client
(
LocalClient or
RemoteClient
FlowTopology)
or Gateway daemon
(Gateway
FlowTopology) classes. |
ResponseExit
This exit point fires just before a response exits from
the Java client
(
LocalClient or
RemoteClient
FlowTopology)
or Gateway daemon
(Gateway
FlowTopology) classes. |
ShutDown
This exit point fires just after the RequestExit is
disabled, at shutdown of the Gateway daemon,
close of the JavaGateway object, or on an error.
|
| Modifier and Type | Method and Description |
|---|---|
static RequestEvent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RequestEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestEvent ShutDown
public static final RequestEvent RequestEntry
LocalClient or
RemoteClient
FlowTopology)
or Gateway daemon
(Gateway
FlowTopology) classes.public static final RequestEvent RequestDetails
Gateway
FlowTopology) classes.public static final RequestEvent ResponseExit
LocalClient or
RemoteClient
FlowTopology)
or Gateway daemon
(Gateway
FlowTopology) classes.public static final RequestEvent Command
public static RequestEvent[] values()
for (RequestEvent c : RequestEvent.values()) System.out.println(c);
public static RequestEvent 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 null