Package oracle.as.scheduler.async
Enum Class AsyncStatus
- All Implemented Interfaces:
Serializable
,Comparable<AsyncStatus>
,java.lang.constant.Constable
Valid values for the callback status of an asynchronous java job.
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.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe asynchronous job encountered a business error.The asynchronous job has canceled its execution.The asynchronous job encountered a system error.The asynchronous job requests manual recovery to complete the request.The asynchronous job has paused for the execution of sub-requests.The asynchronous job ran successfully.The asynchronous job request was Suspended on server quiesce detection.The asynchronous job is updated.The asynchronous job is issuing a WARNING. -
Method Summary
Modifier and TypeMethodDescriptionEnterprise Manager support to acquire a localized string value.static AsyncStatus
Returns the enum constant of this class with the specified name.static AsyncStatus[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
SUCCESS
The asynchronous job ran successfully. -
PAUSE
The asynchronous job has paused for the execution of sub-requests. -
WARNING
The asynchronous job is issuing a WARNING. -
ERROR
The asynchronous job encountered a system error. -
CANCEL
The asynchronous job has canceled its execution. Usually this originates from aRuntimeService.cancel
call. -
UPDATE
The asynchronous job is updated. The request state is not changed by this action. -
BIZ_ERROR
The asynchronous job encountered a business error. -
ERROR_MANUAL_RECOVERY
The asynchronous job requests manual recovery to complete the request. -
SUSPEND
The asynchronous job request was Suspended on server quiesce detection.
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
toString
Enterprise Manager support to acquire a localized string value.- Parameters:
locale
- the desired locale.- Returns:
- the localized string
-