Class GovernanceEngineEventClient
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.governanceengine.client.GovernanceEngineEventClient
-
public class GovernanceEngineEventClient extends Object
GovernanceEngineConfigurationClient supports the configuration of governance engine and governance services.
-
-
Constructor Summary
Constructors Constructor Description GovernanceEngineEventClient(String serverName, String serverPlatformURLRoot, GovernanceEngineRESTClient restClient, int maxPageSize, AuditLog auditLog, String callerId)Create a new client that passes userId and password in each HTTP request.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidregisterListener(String userId, GovernanceEngineEventListener listener)Register a listener object that will be passed each of the events published by the Governance Engine OMAS.
-
-
-
Constructor Detail
-
GovernanceEngineEventClient
public GovernanceEngineEventClient(String serverName, String serverPlatformURLRoot, GovernanceEngineRESTClient restClient, int maxPageSize, AuditLog auditLog, String callerId) throws InvalidParameterException
Create a new client that passes userId and password in each HTTP request. This is the userId/password of the calling server. The end user's userId is sent on each request.- Parameters:
serverName- name of the server to connect toserverPlatformURLRoot- the network address of the server running the OMAS REST serversrestClient- pre-initialized REST clientmaxPageSize- pre-initialized parameter limitauditLog- logging destinationcallerId- unique identifier for caller's listener- Throws:
InvalidParameterException- there is a problem with the information about the remote OMAS
-
-
Method Detail
-
registerListener
public void registerListener(String userId, GovernanceEngineEventListener listener) throws InvalidParameterException, ConnectionCheckedException, ConnectorCheckedException, PropertyServerException, UserNotAuthorizedException
Register a listener object that will be passed each of the events published by the Governance Engine OMAS.- Parameters:
userId- calling userlistener- listener object- Throws:
InvalidParameterException- one of the parameters is null or invalid.ConnectionCheckedException- there are errors in the configuration of the connection which is preventing the creation of a connector.ConnectorCheckedException- there are errors in the initialization of the connector.PropertyServerException- there is a problem retrieving information from the property server(s).UserNotAuthorizedException- the requesting user is not authorized to issue this request.
-
-