public interface CicsIntercept
interceptRequest(GatewayRequest)
method is called before a request is
sent to CICS. The plug-in can change any of the properties on the GatewayRequest
and then returns a value indicating whether the request should be sent onto
CICS or returned back to the client application.
The CICS Intercept plug-in can identify the specific release of the product at run
time by getting the value of Java property, "com.ibm.ctg.gateway.version". The value
of this property is set during initialization of the Gateway daemon and has the form
"v.r.m.f".Modifier and Type | Interface and Description |
---|---|
static class |
CicsIntercept.InterceptAction
Indicates whether a request should continue as normal or be intercepted.
|
Modifier and Type | Method and Description |
---|---|
CicsIntercept.InterceptAction |
interceptRequest(GatewayRequest req)
Allows the
GatewayRequest to be intercepted before being sent on to
CICS. |
CicsIntercept.InterceptAction interceptRequest(GatewayRequest req)
GatewayRequest
to be intercepted before being sent on to
CICS. Implementations can modify the properties of the GatewayRequest
and
can choose to send the request to CICS or return the request to the
calling application.