java.lang.Object
org.odpi.openmetadata.engineservices.watchdogaction.client.WatchdogActionClient
All Implemented Interfaces:
WatchdogActionAPI

public class WatchdogActionClient extends Object implements WatchdogActionAPI
WatchdogActionClient is a client-side library for calling a specific watchdog action engine with an engine host server.
  • Constructor Details

    • WatchdogActionClient

      public WatchdogActionClient(String serverPlatformRootURL, String serverName, String localServerSecretsStoreProvider, String localServerSecretsStoreLocation, String localServerSecretsStoreCollection, String delegatingUserId, AuditLog auditLog) throws InvalidParameterException
      Create a client-side object for calling a governance action engine.
      Parameters:
      serverPlatformRootURL - the root url of the platform where the governance action engine is running.
      serverName - the name of the engine host server where the governance action engine is running
      localServerSecretsStoreProvider - class name of the secrets store
      localServerSecretsStoreLocation - location (networkAddress) of the secrets store
      localServerSecretsStoreCollection - name of the collection of secrets to use to connect to the remote server
      delegatingUserId - external userId making request
      auditLog - destination for log messages.
      Throws:
      InvalidParameterException - one of the parameters is null or invalid.
    • WatchdogActionClient

      public WatchdogActionClient(String serverPlatformRootURL, String serverName, Map<String,SecretsStoreConnector> secretsStoreConnectorMap, String delegatingUserId, AuditLog auditLog) throws InvalidParameterException
      Create a new client with bearer token from supplied secrets store.
      Parameters:
      serverPlatformRootURL - the root url of the platform where the governance action engine is running.
      serverName - the name of the engine host server where the governance action engine is running
      secretsStoreConnectorMap - connectors to secrets stores
      delegatingUserId - external userId making request
      auditLog - destination for log messages.
      Throws:
      InvalidParameterException - there is a problem creating the client-side components to issue any REST API calls.
  • Method Details