Package oracle.security.am.plugin
Enum Class ExecutionStatus
- All Implemented Interfaces:
Serializable
,Comparable<ExecutionStatus>
,java.lang.constant.Constable
Status of the plug-in execution.
ABORT and plug-in missing will be treated the same way.
If a plug-in is missing during authentication status ABORT will
be returned.
- Since:
- OAM 11.1.1.2.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionint
Gets the status.static ExecutionStatus
Returns the enum constant of this class with the specified name.static ExecutionStatus[]
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
Plug-in success status.PluginExecutionStrategy
will decide the next plug-in to be executed -
FAILURE
Plug-in failure status. Do not execute next plug-in. (we can define opcode for detail msg.) -
ABORT
Exception during plug-in will result in Abort status. (we can define the opcode for detail msg.) -
PAUSE
Plug-in execution is not complete and needs input to continue execution -
EXCEPTION
Plugin execution status exception. Error plug-in will not be executed.
-
-
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
-
getStatus
public int getStatus()Gets the status.- Returns:
- the status
-