Enum Class ProcessPhase

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

public enum ProcessPhase extends Enum<ProcessPhase>
Enum of request process phases.

A request will be set to various process phasies during the processing lifecycle of that request.

  • Enum Constant Details

    • Unknown

      public static final ProcessPhase Unknown
      Unknown phase.
    • Undefined

      public static final ProcessPhase Undefined
      Undefined phase.
    • Initial

      public static final ProcessPhase Initial
      Initial phase. A request typically remains in this phase once it is created and until it is picked up by the request processor.
    • PreProcessStart

      public static final ProcessPhase PreProcessStart
      Begin pre process stage of the request execution.
    • PreProcessDelayed

      public static final ProcessPhase PreProcessDelayed
      Request pre process is delayed. The PreProcessHandler returned HandlerStatus.DELAY.
    • PreProcessComplete

      public static final ProcessPhase PreProcessComplete
      Completed pre process stage of the request execution.
    • ExecuteInitiate

      public static final ProcessPhase ExecuteInitiate
      Initiate job execution for the request.
    • ExecuteInitiateComplete

      public static final ProcessPhase ExecuteInitiateComplete
      Job execution initate complete.
    • ExecuteAsyncWait

      public static final ProcessPhase ExecuteAsyncWait
      Waiting for notification that remote execution finished for an asynchronous job.
    • ExecuteFinalize

      public static final ProcessPhase ExecuteFinalize
      Finalize job execution for the request.
    • ExecuteFinalizeAsync

      public static final ProcessPhase ExecuteFinalizeAsync
      Finalize job execution for an asynchronous job request. Enterprise Scheduler processes the notification from the remote executable during this phase.
    • ExecuteFinalizeComplete

      public static final ProcessPhase ExecuteFinalizeComplete
      Job execution finalize complete.
    • ExecutePaused

      public static final ProcessPhase ExecutePaused
      Job executable indicated execution has paused.
    • PostProcessStart

      public static final ProcessPhase PostProcessStart
      Begin post process stage of the request execution.
    • PostProcessDelayed

      public static final ProcessPhase PostProcessDelayed
      Request post process is delayed. The PostProcessHandler returned HandlerStatus.DELAY.
    • PostProcessComplete

      public static final ProcessPhase PostProcessComplete
      Completed post process stage of the request execution.
    • ProcessExecuteComplete

      public static final ProcessPhase ProcessExecuteComplete
      Request execution processing has completed. The pre process, job executable, and post process stages have completed.
    • JobSetInitial

      public static final ProcessPhase JobSetInitial
      Initial phase for a job set request.
    • ProcessSetupReady

      public static final ProcessPhase ProcessSetupReady
      Preparing to execute the request. The request is in READY state and set up is being done to transition to RUNNING state.
    • ExecutePausedWaitForSubreq

      public static final ProcessPhase ExecutePausedWaitForSubreq
      Job execution has paused and Enterprise Scheduler is waiting for sub-requests to complete.
    • ExecuteAsyncReceived

      public static final ProcessPhase ExecuteAsyncReceived
      Received notification from the remote executable for an asynchronous job.
    • JobSetExecuteStepsWait

      public static final ProcessPhase JobSetExecuteStepsWait
      Job set request is waiting for job set steps to complete.
    • PostExecuteStart

      public static final ProcessPhase PostExecuteStart
      Post execution starting for the request. The pre process, job executable, and post process stages have completed. Various clean up tasks pertaining to the request are done during this phase.
    • PostExecuteWaitForSubreq

      public static final ProcessPhase PostExecuteWaitForSubreq
      Post execution is delayed until all sub-requests complete.
    • PostExecuteTerminalComplete

      public static final ProcessPhase PostExecuteTerminalComplete
      Post execution tasks specific to the request are complete. Additional tasks pertaining to a parent or sibling requests may still be needed.
    • PostExecuteComplete

      public static final ProcessPhase PostExecuteComplete
      Post execution of the request is complete. The terminal state event is typically delivered to the request EventListener during this phase.
    • Complete

      public static final ProcessPhase Complete
      All processing for the request is complete. The request is eligible for delete and purge.
  • Method Details

    • values

      public static ProcessPhase[] 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 ProcessPhase 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
    • value

      public int value()
      The numeric value associated with this ProcessPhase.
      Returns:
      value for this process phase.
    • valueOf

      public static ProcessPhase valueOf(int value)
      The ProcessPhase associated with the given value.
      Parameters:
      value - the value to convert
      Returns:
      associated phase.
    • fromString

      public static ProcessPhase fromString(String processPhaseStr)
      Converts a stringified process phase into a ProcessPhase object.
      Parameters:
      processPhaseStr - the string to convert
      Returns:
      the process phase derived from processPhaseStr, or ProcessPhase.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