CICS® Transaction Gateway Programming Reference v1.1.0.0

com.ibm.ctg.ha
Enum RequestCallType

java.lang.Object
  extended by java.lang.Enum<RequestCallType>
      extended by com.ibm.ctg.ha.RequestCallType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RequestCallType>

public enum RequestCallType
extends java.lang.Enum<RequestCallType>

An enumeration of the request types that can be seen by a CICS request exit, allowing the exit to select a CICS server based on the type of request being flowed.


Enum Constant Summary
ECI_EXTENDED
          An extended transaction call
ECI_EXTENDED_TPN
          An extended transaction call with eci_tpn set
ECI_SYNC
          A synchronous call
ECI_SYNC_TPN
          A synchronous call with eci_tpn set
XA
          An XA transaction
 
Method Summary
static RequestCallType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RequestCallType[] 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

ECI_SYNC

public static final RequestCallType ECI_SYNC
A synchronous call


ECI_SYNC_TPN

public static final RequestCallType ECI_SYNC_TPN
A synchronous call with eci_tpn set


ECI_EXTENDED

public static final RequestCallType ECI_EXTENDED
An extended transaction call


ECI_EXTENDED_TPN

public static final RequestCallType ECI_EXTENDED_TPN
An extended transaction call with eci_tpn set


XA

public static final RequestCallType XA
An XA transaction

Method Detail

values

public static final RequestCallType[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(RequestCallType c : RequestCallType.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static RequestCallType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

©Copyright IBM Corp. 1994, 2014
Legal