Enum HookOperationMode
- java.lang.Object
-
- java.lang.Enum<HookOperationMode>
-
- com.evolveum.midpoint.model.api.hooks.HookOperationMode
-
- All Implemented Interfaces:
Serializable
,Comparable<HookOperationMode>
public enum HookOperationMode extends Enum<HookOperationMode>
- Author:
- semancik
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BACKGROUND
The hook operates in background.ERROR
Hook completes with an error (TODO).FOREGROUND
The hook operates in background.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HookOperationMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static HookOperationMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
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 Detail
-
values
public static HookOperationMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (HookOperationMode c : HookOperationMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HookOperationMode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
-