Enum Class CapturePoint

java.lang.Object
java.lang.Enum<CapturePoint>
org.forgerock.openig.decoration.capture.CapturePoint
All Implemented Interfaces:
Serializable, Comparable<CapturePoint>, Constable

public enum CapturePoint extends Enum<CapturePoint>
Specify where the message capture takes place. If 'NONE' is set amongst the list, it takes precedences of the others.
  • Enum Constant Details

    • ALL

      public static final CapturePoint ALL
      Prints all of the messages.
    • FILTERED_REQUEST

      public static final CapturePoint FILTERED_REQUEST
      Prints the filtered request (Filter only).
    • FILTERED_RESPONSE

      public static final CapturePoint FILTERED_RESPONSE
      Prints the filtered response (Filter only).
    • REQUEST

      public static final CapturePoint REQUEST
      Prints input request.
    • RESPONSE

      public static final CapturePoint RESPONSE
      Prints the output response. In case of a filter, this represents the response produced by the next handler. In case of a handler, this represents the handler's produced response object.
    • NONE

      public static final CapturePoint NONE
      Disable the capture.
  • Method Details

    • values

      public static CapturePoint[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static CapturePoint valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null