Class UpdateAction

java.lang.Object
oracle.as.scheduler.async.UpdateAction

public class UpdateAction extends Object
Encapsulates the update action from application execution callout. The action returned determines how the subsequent processing of the request will proceed.
  • Constructor Details

    • UpdateAction

      public UpdateAction(AsyncStatus status, String message)
      Constructor. Creates an UpdateAction object from the status and message components.
      Parameters:
      status - Indicates the status of execution of this update event. This status may result in a state transition for the request.
      message - A message that, depending on the value of status, may be used for various purposes.
      An error message if the status is ERROR or BIZ_ERROR,
      A warning message if the status is WARNING,
      The paused state if the status is PAUSED.
      The value will be ignored if the status is SUCCESS, CANCEL, or UPDATE.
      The message is limited to 1000 characters. If it exceeds the limit, it will be truncated.
    • UpdateAction

      public UpdateAction(AsyncStatus status, String message, Throwable throwable)
      Constructor. Creates an UpdateAction object from the status and message components.
      Parameters:
      status - Indicates the status of execution of this update event. This status may result in a state transition for the request.
      message - A message that, depending on the value of status, may be used for various purposes.
      An error message if the status is ERROR or BIZ_ERROR,
      A warning message if the status is WARNING,
      The paused state if the status is PAUSED.
      The value will be ignored if the status is SUCCESS, CANCEL, or UPDATE.
      The message is limited to 1000 characters. If it exceeds the limit, it will be truncated.
      throwable - Further information about the status of this update.
  • Method Details

    • getAsyncStatus

      public AsyncStatus getAsyncStatus()
      Gets the AsyncStatus associated with this object.
      Returns:
      the async status
    • getMessage

      public String getMessage()
      Gets the message associated with this object.
      Returns:
      the message, or null if none
    • getThrowable

      public Throwable getThrowable()
      Gets the Throwable associated with this object.
      Returns:
      the throwable, or null if none