Enum Class ExecutionStatus

java.lang.Object
java.lang.Enum<ExecutionStatus>
oracle.security.am.plugin.ExecutionStatus
All Implemented Interfaces:
Serializable, Comparable<ExecutionStatus>, java.lang.constant.Constable

public enum ExecutionStatus extends Enum<ExecutionStatus>
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
  • Enum Constant Details

    • SUCCESS

      public static final ExecutionStatus SUCCESS
      Plug-in success status. PluginExecutionStrategy will decide the next plug-in to be executed
    • FAILURE

      public static final ExecutionStatus FAILURE
      Plug-in failure status. Do not execute next plug-in. (we can define opcode for detail msg.)
    • ABORT

      public static final ExecutionStatus ABORT
      Exception during plug-in will result in Abort status. (we can define the opcode for detail msg.)
    • PAUSE

      public static final ExecutionStatus PAUSE
      Plug-in execution is not complete and needs input to continue execution
    • EXCEPTION

      public static final ExecutionStatus EXCEPTION
      Plugin execution status exception. Error plug-in will not be executed.
  • Method Details

    • values

      public static ExecutionStatus[] 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

      public static ExecutionStatus valueOf<wbr>(String name)
      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 name
      NullPointerException - if the argument is null
    • getStatus

      public int getStatus()
      Gets the status.
      Returns:
      the status