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 SummaryEnum Constants Enum Constant Description BACKGROUNDThe hook operates in background.ERRORHook completes with an error (TODO).FOREGROUNDThe hook operates in background.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static HookOperationModevalueOf(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- 
FOREGROUNDpublic 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.
 - 
BACKGROUNDpublic 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.
 - 
ERRORpublic static final HookOperationMode ERROR Hook completes with an error (TODO).
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 
- 
 
-