|
Oracle Fusion Applications Java API Reference for Oracle Enterprise Scheduler Service 11g Release 1 (11.1.1.6) E20742-05 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<HandlerStatus>
oracle.as.scheduler.HandlerStatus
public enum HandlerStatus
Enumeration of application callout actions. Callouts allow an application to customize pre-processing and post-processing of requests. The action returned by a callback handler determines how the subsequent request processing will proceed.
PreProcessHandler,
PostProcessHandler| Enum Constant Summary | |
|---|---|
BIZ_ERROR
Stop processing the request with a business error. |
|
CANCEL
Cancel processing the request. |
|
DELAY
Delay processing of the request. |
|
PROCEED
Continue processing the request. |
|
SYSTEM_ERROR
Stop processing the request with a system error. |
|
UNKNOWN
Unknown or invalid status. |
|
WARN
Continue processing the request with a warning. |
|
| Method Summary | |
|---|---|
static HandlerStatus |
fromString(java.lang.String handlerStatusStr)
Converts a stringified handler status into a HandlerStatus object. |
java.lang.String |
toString(java.util.Locale locale)
Support EM's need to acquire a localized version of String value |
static HandlerStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static HandlerStatus[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final HandlerStatus UNKNOWN
public static final HandlerStatus PROCEED
public static final HandlerStatus DELAY
public static final HandlerStatus CANCEL
public static final HandlerStatus WARN
public static final HandlerStatus BIZ_ERROR
public static final HandlerStatus SYSTEM_ERROR
| Method Detail |
|---|
public static HandlerStatus[] values()
for (HandlerStatus c : HandlerStatus.values()) System.out.println(c);
public static HandlerStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is nullpublic static HandlerStatus fromString(java.lang.String handlerStatusStr)
handlerStatusStr -
handlerStatusStr or
HandlerStatus.UNKNOWN if the conversion could not be made.public java.lang.String toString(java.util.Locale locale)
locale -
|
Oracle Fusion Applications Java API Reference for Oracle Enterprise Scheduler Service 11g Release 1 (11.1.1.6) E20742-05 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||