Package com.evolveum.midpoint.repo.api
Interface SystemConfigurationChangeDispatcher
- All Known Implementing Classes:
SystemConfigurationChangeDispatcherImpl
public interface SystemConfigurationChangeDispatcher
Central point of dispatching notifications about changes to the system configuration object.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
dispatch
(boolean ignoreVersion, boolean allowNotFound, OperationResult result) Dispatches information on system configuration object change.void
Registers a listener that will be updated on system configuration object changes.void
Unregisters a listener.
-
Method Details
-
dispatch
void dispatch(boolean ignoreVersion, boolean allowNotFound, OperationResult result) throws SchemaException Dispatches information on system configuration object change. Basically this directly pushes information to lower layers (prism, schema, repo, etc), and calls registered listeners that originate in upper layers.- Parameters:
ignoreVersion
- If false, the information is dispatched unconditionally. If true, we dispatch the notification only if the system configuration version was really changed. This is to easily support sources that "ping" sysconfig object in regular intervals, e.g. the cluster manager thread.allowNotFound
- If true, we take non-existence of sysconfig object more easily. To be used e.g. on system init or during tests execution.- Throws:
SchemaException
-
registerListener
Registers a listener that will be updated on system configuration object changes. -
unregisterListener
Unregisters a listener.
-