Package oracle.as.scheduler.async
Class UpdateAction
java.lang.Object
oracle.as.scheduler.async.UpdateAction
Encapsulates the update action from application execution callout. The
action returned determines how the subsequent processing of the request
will proceed.
-
Constructor Summary
ConstructorsConstructorDescriptionUpdateAction
(AsyncStatus status, String message) Constructor.UpdateAction
(AsyncStatus status, String message, Throwable throwable) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionGets the AsyncStatus associated with this object.Gets the message associated with this object.Gets the Throwable associated with this object.
-
Constructor Details
-
UpdateAction
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 ofstatus
, 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
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 ofstatus
, 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
Gets the AsyncStatus associated with this object.- Returns:
- the async status
-
getMessage
Gets the message associated with this object.- Returns:
- the message, or
null
if none
-
getThrowable
Gets the Throwable associated with this object.- Returns:
- the throwable, or
null
if none
-