public final class AsyncStatus extends Enum
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.
Modifier and Type | Field and Description |
---|---|
static AsyncStatus |
BIZ_ERROR
The asynchronous job encountered a business error.
|
static AsyncStatus |
CANCEL
The asynchronous job has canceled its execution.
|
static AsyncStatus |
ERROR
The asynchronous job encountered a system error.
|
static AsyncStatus |
ERROR_MANUAL_RECOVERY
The asynchronous job requests manual recovery to complete the request.
|
static AsyncStatus |
PAUSE
The asynchronous job has paused for the execution of sub-requests.
|
static AsyncStatus |
SUCCESS
The asynchronous job ran successfully.
|
static AsyncStatus |
UPDATE
The asynchronous job is updated.
|
static AsyncStatus |
WARNING
The asynchronous job is issuing a WARNING.
|
Modifier and Type | Method and Description |
---|---|
String |
toString(Locale locale)
Enterprise Manager support to acquire a localized string value.
|
static AsyncStatus |
valueOf(String name) |
static AsyncStatus[] |
values() |
public static final AsyncStatus SUCCESS
public static final AsyncStatus PAUSE
public static final AsyncStatus WARNING
public static final AsyncStatus ERROR
public static final AsyncStatus CANCEL
RuntimeService.cancel
call.public static final AsyncStatus UPDATE
public static final AsyncStatus BIZ_ERROR
public static final AsyncStatus ERROR_MANUAL_RECOVERY
public static AsyncStatus[] values()
public static AsyncStatus valueOf(String name)