Enum Class HandlerStatus

java.lang.Object
java.lang.Enum<HandlerStatus>
oracle.as.scheduler.HandlerStatus
All Implemented Interfaces:
Serializable, Comparable<HandlerStatus>, java.lang.constant.Constable

public enum HandlerStatus extends Enum<HandlerStatus>
Enumeration of application callout actions. Callouts allow an application to customize pre-processing and post-processing of requests. The action returned by a callback handler determines how the subsequent request processing will proceed.
See Also:
  • Enum Constant Details

    • UNKNOWN

      public static final HandlerStatus UNKNOWN
      Unknown or invalid status.
    • PROCEED

      public static final HandlerStatus PROCEED
      Continue processing the request.
    • DELAY

      public static final HandlerStatus DELAY
      Delay processing of the request.
    • CANCEL

      public static final HandlerStatus CANCEL
      Cancel processing the request.
    • WARN

      public static final HandlerStatus WARN
      Continue processing the request with a warning.
    • BIZ_ERROR

      public static final HandlerStatus BIZ_ERROR
      Stop processing the request with a business error.
    • SYSTEM_ERROR

      public static final HandlerStatus SYSTEM_ERROR
      Stop processing the request with a system error.
    • SUSPEND

      public static final HandlerStatus SUSPEND
      Suspend request processing on server quiesce detection.
  • Method Details

    • values

      public static HandlerStatus[] 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 HandlerStatus 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
    • fromString

      public static HandlerStatus fromString(String handlerStatusStr)
      Converts a stringified handler status into a HandlerStatus object.
      Parameters:
      handlerStatusStr - the string to covert
      Returns:
      the handler status derived from handlerStatusStr or HandlerStatus.UNKNOWN if the conversion could not be made.
    • toString

      public String toString(Locale locale)
      Enterprise Manager support to acquire a localized string value.
      Parameters:
      locale - the desired locale.
      Returns:
      the localized string