Class HookRegistryImpl
- java.lang.Object
-
- com.evolveum.midpoint.model.impl.hooks.HookRegistryImpl
-
- All Implemented Interfaces:
HookRegistry
@Component public class HookRegistryImpl extends Object implements HookRegistry
- Author:
- semancik
-
-
Constructor Summary
Constructors Constructor Description HookRegistryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ChangeHook>
getAllChangeHooks()
Collection<ReadHook>
getAllReadHooks()
void
registerChangeHook(String url, ChangeHook changeHook)
void
registerReadHook(String url, ReadHook searchHook)
-
-
-
Method Detail
-
registerChangeHook
public void registerChangeHook(String url, ChangeHook changeHook)
- Specified by:
registerChangeHook
in interfaceHookRegistry
-
getAllChangeHooks
public List<ChangeHook> getAllChangeHooks()
- Specified by:
getAllChangeHooks
in interfaceHookRegistry
-
registerReadHook
public void registerReadHook(String url, ReadHook searchHook)
- Specified by:
registerReadHook
in interfaceHookRegistry
-
getAllReadHooks
public Collection<ReadHook> getAllReadHooks()
- Specified by:
getAllReadHooks
in interfaceHookRegistry
-
-