com.ibm.ctg.monitoring

Enum RequestEvent

  • java.lang.Object
    • java.lang.Enum<RequestEvent>
      • com.ibm.ctg.monitoring.RequestEvent
  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<RequestEvent>


    public enum RequestEvent
    extends java.lang.Enum<RequestEvent>
    This enumeration defines the event that triggers the eventFired() method of the RequestExit.
    • Method Summary

      Methods 
      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.
      • 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

      • ShutDown

        public static final RequestEvent 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. This is to allow the exit to tidy up any external resources it has been using.
      • RequestDetails

        public static final RequestEvent RequestDetails
        This exit point fires just before a request is sent to CICS from the Gateway daemon (Gateway FlowTopology) classes.
      • Command

        public static final RequestEvent Command
        This exit point fires when the Gateway daemon receives an administration request for the request monitoring exit which includes a command string.
    • Method Detail

      • values

        public static RequestEvent[] 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 (RequestEvent c : RequestEvent.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static RequestEvent 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, 2013
Legal