Enum Class HookOperationMode

java.lang.Object
java.lang.Enum<HookOperationMode>
com.evolveum.midpoint.model.api.hooks.HookOperationMode
All Implemented Interfaces:
Serializable, Comparable<HookOperationMode>, Constable

public enum HookOperationMode extends Enum<HookOperationMode>
Author:
semancik
  • Enum Constant Details

    • FOREGROUND

      public static final HookOperationMode FOREGROUND
      The hook operates in background. If the hook returns then the hook operation is completed. The caller reclaims ownership of the task. The thread may be used to continue execution of the task and to complete the task.
    • BACKGROUND

      public static final HookOperationMode BACKGROUND
      The hook operates in background. The hook will use its own thread for execution. After the hook is done with executing it will "return" control to the next handler in the task handler stack. The ownership of the task remains inside the hook. The thread returned from the hook method must be used only to return back to the caller (e.g. GUI) and inform him that the task was switched to background.
    • ERROR

      public static final HookOperationMode ERROR
      Hook completes with an error (TODO).
  • Method Details

    • values

      public static HookOperationMode[] 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 HookOperationMode valueOf(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