Enum Class AsyncStatus

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

public enum AsyncStatus extends Enum<AsyncStatus>
Valid values for the callback status of an asynchronous java job.

Returning an AsyncStatus does not guarantee that the state of the request will change to the corresponding value. The new state of the request will depend on the old state, the async status, the result of the post-Process handler (if any), and any errors that may occur in subsequent processing.

  • Enum Constant Details

    • SUCCESS

      public static final AsyncStatus SUCCESS
      The asynchronous job ran successfully.
    • PAUSE

      public static final AsyncStatus PAUSE
      The asynchronous job has paused for the execution of sub-requests.
    • WARNING

      public static final AsyncStatus WARNING
      The asynchronous job is issuing a WARNING.
    • ERROR

      public static final AsyncStatus ERROR
      The asynchronous job encountered a system error.
    • CANCEL

      public static final AsyncStatus CANCEL
      The asynchronous job has canceled its execution. Usually this originates from a RuntimeService.cancel call.
    • UPDATE

      public static final AsyncStatus UPDATE
      The asynchronous job is updated. The request state is not changed by this action.
    • BIZ_ERROR

      public static final AsyncStatus BIZ_ERROR
      The asynchronous job encountered a business error.
    • ERROR_MANUAL_RECOVERY

      public static final AsyncStatus ERROR_MANUAL_RECOVERY
      The asynchronous job requests manual recovery to complete the request.
    • SUSPEND

      public static final AsyncStatus SUSPEND
      The asynchronous job request was Suspended on server quiesce detection.
  • Method Details

    • values

      public static AsyncStatus[] 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 AsyncStatus 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
    • toString

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