Package oracle.as.scheduler
Enum Class Cause
- All Implemented Interfaces:
Serializable
,Comparable<Cause>
,java.lang.constant.Constable
Enums of causes for job request terminal state.
This class provides a mapping between the cause code registered by the system and and a detailed (translatable) message.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAutomatic recovery.Manual recovery.Metadata not found.Default terminal state.Request was cancelled due to operator action.Parent request did not pause during its execution.Business error occurred during post-processing.Request was cancelled during post-processing.Application error occurred during post-processing.System error occurred during post-processing.Application error occurred during post-processing.Business error occurred during pre-processing.Request was cancelled during pre-processing.Application error occurred during pre-processing.Request was cancelled by pre-processing callout handler.System error occurred during pre-processing.Business error occurred during request processing.Request processing was cancelled.Application error occurred during request processing.Job force terminated in 2nd stage of Quiesce, when killJobs=true.Job indicated there was an error during processing that requires the request to be recovered manuallyJob indicated there was an error during processing that requires the request to be recovered manuallyThe request could not be recovered.Request processing was successful.Job indicated it has suspended execution, in response to server quiesce.System error occurred during request processing.Asynchronous request has timed out.Status of the request is unknown.Business error occurred during update event processing.Request processing was cancelled based on update event.Application error occurred during update event processing.Application warning occurred during update event processing.Application warning occurred during request processing.Request was cancelled during manual recovery.Request was cancelled during manual recovery when removing process group.Request execution authorzation failed.Request expired.Request submittor failed to loginSystem error occurred.Unknown or invalid cause.Validation error occurred. -
Method Summary
Modifier and TypeMethodDescriptionstatic Cause
fromString
(String causeStr) Converts a stringified cause into a Cause object.static Cause
getCause
(int code) Gets the Cause for the associated code.int
getCode()
Gets the code for this cause.Gets the description for this cause.getDescription
(Locale locale) Gets localized description for the Cause.Gets localized represention of Cause enum.static Cause
Returns the enum constant of this class with the specified name.static Cause[]
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
-
UNKNOWN
Unknown or invalid cause. -
NON_TERMINAL
Default terminal state. -
REQUEST_EXPIRED
Request expired. -
REQUEST_LOGIN_ERROR
Request submittor failed to login -
REQUEST_AUTHORIZATION_FAILED
Request execution authorzation failed. -
SYSTEM_ERROR
System error occurred. -
VALIDATION_ERROR
Validation error occurred. -
METADATA_NOT_FOUND
Metadata not found. -
OPERATOR_CANCEL
Request was cancelled due to operator action. -
RECOVER_CANCEL
Request was cancelled during manual recovery. -
RECOVER_GROUP_CANCEL
Request was cancelled during manual recovery when removing process group. -
PARENT_NOT_PAUSED
Parent request did not pause during its execution. -
PREPROCESS_SYSTEM_ERROR
System error occurred during pre-processing. -
PREPROCESS_CANCEL
Request was cancelled during pre-processing. -
PREPROCESS_INITIATE_CANCEL
Request was cancelled by pre-processing callout handler. -
PREPROCESS_ERROR
Application error occurred during pre-processing. -
PREPROCESS_BIZ_ERROR
Business error occurred during pre-processing. -
PROCESS_WARNING
Application warning occurred during request processing. -
PROCESS_ERROR
Application error occurred during request processing. -
PROCESS_CANCEL
Request processing was cancelled. -
PROCESS_SUCCESS
Request processing was successful. -
PROCESS_SYSTEM_ERROR
System error occurred during request processing. -
PROCESS_BIZ_ERROR
Business error occurred during request processing. -
PROCESS_TIMED_OUT
Asynchronous request has timed out. -
PROCESS_UNKNOWN_STATUS
Status of the request is unknown. -
PROCESS_RECOVER
The request could not be recovered. -
PROCESS_MANUAL_RECOVER_ERROR
Job indicated there was an error during processing that requires the request to be recovered manually -
PROCESS_MANUAL_RECOVER_ERROR_FINALIZE
Job indicated there was an error during processing that requires the request to be recovered manually -
PROCESS_SUSPEND
Job indicated it has suspended execution, in response to server quiesce. -
PROCESS_KILLED
Job force terminated in 2nd stage of Quiesce, when killJobs=true. Applicable to pl/sql or spawned job that don't exit within the grace period -
POSTPROCESS_SYSTEM_ERROR
System error occurred during post-processing. -
POSTPROCESS_CANCEL
Request was cancelled during post-processing. -
POSTPROCESS_WARNING
Application error occurred during post-processing. -
POSTPROCESS_ERROR
Application error occurred during post-processing. -
POSTPROCESS_BIZ_ERROR
Business error occurred during post-processing. -
PROCESS_UPDATE_WARNING
Application warning occurred during update event processing. -
PROCESS_UPDATE_ERROR
Application error occurred during update event processing. -
PROCESS_UPDATE_CANCEL
Request processing was cancelled based on update event. -
PROCESS_UPDATE_BIZ_ERROR
Business error occurred during update event processing. -
MANUAL_RECOVER_ERROR
Manual recovery. -
AUTOMATED_RECOVER_ERROR
Automatic recovery.
-
-
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
-
getDescription
Gets the description for this cause.- Returns:
- cause description.
-
getCode
public int getCode()Gets the code for this cause.- Returns:
- cause code.
-
getCause
Gets the Cause for the associated code.- Parameters:
code
- the code for which the Cause is being requested- Returns:
- the corresponding Cause
-
fromString
Converts a stringified cause into a Cause object.- Parameters:
causeStr
-- Returns:
- the cause derived from
causeStr
, orCause.Unknown
if the conversion could not be made.
-
toString
Gets localized represention of Cause enum.- Parameters:
locale
- the Locale- Returns:
- localized Cause enum
-
getDescription
Gets localized description for the Cause.- Parameters:
locale
- the Locale- Returns:
- localized description
-