Enum Class Cause

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

public enum Cause extends Enum<Cause>
Enums of causes for job request terminal state.

This class provides a mapping between the cause code registered by the system and and a detailed (translatable) message.

  • Enum Constant Details

    • UNKNOWN

      public static final Cause UNKNOWN
      Unknown or invalid cause.
    • NON_TERMINAL

      public static final Cause NON_TERMINAL
      Default terminal state.
    • REQUEST_EXPIRED

      public static final Cause REQUEST_EXPIRED
      Request expired.
    • REQUEST_LOGIN_ERROR

      public static final Cause REQUEST_LOGIN_ERROR
      Request submittor failed to login
    • REQUEST_AUTHORIZATION_FAILED

      public static final Cause REQUEST_AUTHORIZATION_FAILED
      Request execution authorzation failed.
    • SYSTEM_ERROR

      public static final Cause SYSTEM_ERROR
      System error occurred.
    • VALIDATION_ERROR

      public static final Cause VALIDATION_ERROR
      Validation error occurred.
    • METADATA_NOT_FOUND

      public static final Cause METADATA_NOT_FOUND
      Metadata not found.
    • OPERATOR_CANCEL

      public static final Cause OPERATOR_CANCEL
      Request was cancelled due to operator action.
    • RECOVER_CANCEL

      public static final Cause RECOVER_CANCEL
      Request was cancelled during manual recovery.
    • RECOVER_GROUP_CANCEL

      public static final Cause RECOVER_GROUP_CANCEL
      Request was cancelled during manual recovery when removing process group.
    • PARENT_NOT_PAUSED

      public static final Cause PARENT_NOT_PAUSED
      Parent request did not pause during its execution.
    • PREPROCESS_SYSTEM_ERROR

      public static final Cause PREPROCESS_SYSTEM_ERROR
      System error occurred during pre-processing.
    • PREPROCESS_CANCEL

      public static final Cause PREPROCESS_CANCEL
      Request was cancelled during pre-processing.
    • PREPROCESS_INITIATE_CANCEL

      public static final Cause PREPROCESS_INITIATE_CANCEL
      Request was cancelled by pre-processing callout handler.
    • PREPROCESS_ERROR

      public static final Cause PREPROCESS_ERROR
      Application error occurred during pre-processing.
    • PREPROCESS_BIZ_ERROR

      public static final Cause PREPROCESS_BIZ_ERROR
      Business error occurred during pre-processing.
    • PROCESS_WARNING

      public static final Cause PROCESS_WARNING
      Application warning occurred during request processing.
    • PROCESS_ERROR

      public static final Cause PROCESS_ERROR
      Application error occurred during request processing.
    • PROCESS_CANCEL

      public static final Cause PROCESS_CANCEL
      Request processing was cancelled.
    • PROCESS_SUCCESS

      public static final Cause PROCESS_SUCCESS
      Request processing was successful.
    • PROCESS_SYSTEM_ERROR

      public static final Cause PROCESS_SYSTEM_ERROR
      System error occurred during request processing.
    • PROCESS_BIZ_ERROR

      public static final Cause PROCESS_BIZ_ERROR
      Business error occurred during request processing.
    • PROCESS_TIMED_OUT

      public static final Cause PROCESS_TIMED_OUT
      Asynchronous request has timed out.
    • PROCESS_UNKNOWN_STATUS

      public static final Cause PROCESS_UNKNOWN_STATUS
      Status of the request is unknown.
    • PROCESS_RECOVER

      public static final Cause PROCESS_RECOVER
      The request could not be recovered.
    • PROCESS_MANUAL_RECOVER_ERROR

      public static final Cause PROCESS_MANUAL_RECOVER_ERROR
      Job indicated there was an error during processing that requires the request to be recovered manually
    • PROCESS_MANUAL_RECOVER_ERROR_FINALIZE

      public static final Cause PROCESS_MANUAL_RECOVER_ERROR_FINALIZE
      Job indicated there was an error during processing that requires the request to be recovered manually
    • PROCESS_SUSPEND

      public static final Cause PROCESS_SUSPEND
      Job indicated it has suspended execution, in response to server quiesce.
    • PROCESS_KILLED

      public static final Cause PROCESS_KILLED
      Job force terminated in 2nd stage of Quiesce, when killJobs=true. Applicable to pl/sql or spawned job that don't exit within the grace period
    • POSTPROCESS_SYSTEM_ERROR

      public static final Cause POSTPROCESS_SYSTEM_ERROR
      System error occurred during post-processing.
    • POSTPROCESS_CANCEL

      public static final Cause POSTPROCESS_CANCEL
      Request was cancelled during post-processing.
    • POSTPROCESS_WARNING

      public static final Cause POSTPROCESS_WARNING
      Application error occurred during post-processing.
    • POSTPROCESS_ERROR

      public static final Cause POSTPROCESS_ERROR
      Application error occurred during post-processing.
    • POSTPROCESS_BIZ_ERROR

      public static final Cause POSTPROCESS_BIZ_ERROR
      Business error occurred during post-processing.
    • PROCESS_UPDATE_WARNING

      public static final Cause PROCESS_UPDATE_WARNING
      Application warning occurred during update event processing.
    • PROCESS_UPDATE_ERROR

      public static final Cause PROCESS_UPDATE_ERROR
      Application error occurred during update event processing.
    • PROCESS_UPDATE_CANCEL

      public static final Cause PROCESS_UPDATE_CANCEL
      Request processing was cancelled based on update event.
    • PROCESS_UPDATE_BIZ_ERROR

      public static final Cause PROCESS_UPDATE_BIZ_ERROR
      Business error occurred during update event processing.
    • MANUAL_RECOVER_ERROR

      public static final Cause MANUAL_RECOVER_ERROR
      Manual recovery.
    • AUTOMATED_RECOVER_ERROR

      public static final Cause AUTOMATED_RECOVER_ERROR
      Automatic recovery.
  • Method Details

    • values

      public static Cause[] 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 Cause 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
    • getDescription

      public String getDescription()
      Gets the description for this cause.
      Returns:
      cause description.
    • getCode

      public int getCode()
      Gets the code for this cause.
      Returns:
      cause code.
    • getCause

      public static Cause getCause(int code)
      Gets the Cause for the associated code.
      Parameters:
      code - the code for which the Cause is being requested
      Returns:
      the corresponding Cause
    • fromString

      public static Cause fromString(String causeStr)
      Converts a stringified cause into a Cause object.
      Parameters:
      causeStr -
      Returns:
      the cause derived from causeStr, or Cause.Unknown if the conversion could not be made.
    • toString

      public String toString(Locale locale)
      Gets localized represention of Cause enum.
      Parameters:
      locale - the Locale
      Returns:
      localized Cause enum
    • getDescription

      public String getDescription(Locale locale)
      Gets localized description for the Cause.
      Parameters:
      locale - the Locale
      Returns:
      localized description