com.ibm.ctg.ha

Enum RequestCallType

  • java.lang.Object
  • 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.
    • Method Summary

      Methods 
      Modifier and Type Method and Description
      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 are 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 SYNCONRETURN ECI call
      • ECI_SYNC_TPN

        public static final RequestCallType ECI_SYNC_TPN
        A SYNCONRETURN ECI call with eci_tpn set
      • ECI_EXTENDED

        public static final RequestCallType ECI_EXTENDED
        An extended LUW ECI call
      • ECI_EXTENDED_TPN

        public static final RequestCallType ECI_EXTENDED_TPN
        An extended LUW ECI call with eci_tpn set
      • ESI_VERIFY_PASSWORD

        public static final RequestCallType ESI_VERIFY_PASSWORD
        A verify password request
      • ESI_CHANGE_PASSWORD

        public static final RequestCallType ESI_CHANGE_PASSWORD
        A change password request
    • Method Detail

      • values

        public static RequestCallType[] values()
        Returns an array containing the constants of this enum type, in the order they are 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 are 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
        java.lang.NullPointerException - if the argument is null
©Copyright IBM Corp. 1994, 2012
Legal