Class GovernanceListenerManager
- java.lang.Object
-
- org.odpi.openmetadata.engineservices.governanceaction.context.GovernanceListenerManager
-
public class GovernanceListenerManager extends Object
GovernanceListenerManager manages the watchdog listeners through a single registration to the Governance Engine OMAS's out topic. This approach is used to enable the rapid changing list of watchdog listeners and their listening specification without pushing that churn to the event bus.
-
-
Constructor Summary
Constructors Constructor Description GovernanceListenerManager(AuditLog auditLog, String governanceEngineName)Create a governance listener manager for watchdog listeners.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidprocessEvent(WatchdogGovernanceEvent event)Process a watchdog event that was published by the Governance Engine OMAS.voidremoveListener(String connectorId)Remove the listener for a specific governance service because this service has been disconnected.
-
-
-
Method Detail
-
processEvent
public void processEvent(WatchdogGovernanceEvent event) throws InvalidParameterException
Process a watchdog event that was published by the Governance Engine OMAS.- Parameters:
event- event object - call getEventType to find out what type of event.- Throws:
InvalidParameterException- the event is incomplete
-
removeListener
public void removeListener(String connectorId)
Remove the listener for a specific governance service because this service has been disconnected.- Parameters:
connectorId- unique id of governance service instance
-
-