org.odpi.openmetadata.accessservices.digitalarchitecture.client.OpenGovernanceClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of digital-architecture-client Show documentation
Show all versions of digital-architecture-client Show documentation
Client library for the Digital Architecture Open Metadata Access Service (OMAS).
The newest version!
/* SPDX-License-Identifier: Apache-2.0 */
/* Copyright Contributors to the ODPi Egeria project. */
package org.odpi.openmetadata.accessservices.digitalarchitecture.client;
import org.odpi.openmetadata.adminservices.configuration.registration.AccessServiceDescription;
import org.odpi.openmetadata.frameworks.connectors.ffdc.InvalidParameterException;
import org.odpi.openmetadata.frameworkservices.gaf.client.OpenGovernanceClientBase;
/**
* OpenGovernanceClientBase provides common governance services that originate in the Governance Action Framework (GAF).
* This includes the ability to define and execute governance action processes as well as manage duplicates.
*/
public class OpenGovernanceClient extends OpenGovernanceClientBase
{
private final static String serviceURLMarker = AccessServiceDescription.DIGITAL_ARCHITECTURE_OMAS.getAccessServiceURLMarker();
/**
* Create a new client with no authentication embedded in the HTTP request.
*
* @param serverName name of the server to connect to
* @param serverPlatformURLRoot the network address of the server running the OMAS REST services
* @param maxPageSize pre-initialized parameter limit
*
* @throws InvalidParameterException there is a problem creating the client-side components to issue any
* REST API calls.
*/
public OpenGovernanceClient(String serverName,
String serverPlatformURLRoot,
int maxPageSize) throws InvalidParameterException
{
super(serviceURLMarker, serverName, serverPlatformURLRoot, maxPageSize);
}
/**
* 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.
*
* @param serverName name of the server to connect to
* @param serverPlatformURLRoot the network address of the server running the OMAS REST services
* @param serverUserId caller's userId embedded in all HTTP requests
* @param serverPassword caller's password embedded in all HTTP requests
* @param maxPageSize pre-initialized parameter limit
*
* @throws InvalidParameterException there is a problem creating the client-side components to issue any
* REST API calls.
*/
public OpenGovernanceClient(String serverName,
String serverPlatformURLRoot,
String serverUserId,
String serverPassword,
int maxPageSize) throws InvalidParameterException
{
super(serviceURLMarker, serverName, serverPlatformURLRoot, serverUserId, serverPassword, maxPageSize);
}
}