Class AssetManagerEventClient
java.lang.Object
org.odpi.openmetadata.accessservices.assetmanager.client.AssetManagerEventClient
- All Implemented Interfaces:
AssetManagerEventInterface
AssetManagerEventClient provides the implementation to manage the interaction with the server to
set up a listener to support the receipt of inbound events from the Asset Manager OMAS Out Topic.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturn the name of the server where configuration is supposed to be stored.void
registerListener
(String userId, AssetManagerEventListener listener) Register a listener object that will be passed each of the events published by the Asset Manager OMAS.
-
Constructor Details
-
AssetManagerEventClient
public AssetManagerEventClient(String serverName, String serverPlatformURLRoot, String serverUserId, String serverPassword, int maxPageSize, AuditLog auditLog, String callerId) throws InvalidParameterException Create a new client that is to be used within an OMAG Server.- Parameters:
serverName
- name of the server to connect toserverPlatformURLRoot
- the network address of the server running the OMAS REST servicesserverUserId
- this server's userIdserverPassword
- this server's userIdmaxPageSize
- pre-initialized parameter limitauditLog
- logging destinationcallerId
- unique identifier of the caller- Throws:
InvalidParameterException
- there is a problem with the information about the remote OMAS
-
-
Method Details
-
getConfigurationServerName
Return the name of the server where configuration is supposed to be stored.- Returns:
- server name
-
registerListener
public void registerListener(String userId, AssetManagerEventListener listener) throws InvalidParameterException, ConnectionCheckedException, ConnectorCheckedException, PropertyServerException, UserNotAuthorizedException Register a listener object that will be passed each of the events published by the Asset Manager OMAS.- Specified by:
registerListener
in interfaceAssetManagerEventInterface
- 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.
-