Enum Class Advice

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

public enum Advice extends Enum<Advice>
Enumeration defining the advices.
  • Advice.ABORT to abort the execution flow.
  • Advice.STOP signaling the end of the execution.
  • Advice.CONTINUE to continue the execution.
The execution will stop only after receiving a STOP advice.
Since:
OAM 11.1.1.2.0
  • Enum Constant Details

    • ABORT

      public static final Advice ABORT
      Abort Execution *.
    • CONTINUE

      public static final Advice CONTINUE
      Continue Execution *.
    • STOP

      public static final Advice STOP
      Successful termination of Execution *.
  • Method Details

    • values

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