Interface AnalyticsIntegratorAPI
public interface AnalyticsIntegratorAPI
AnalyticsIntegratorAPI is the interface to validate that a connector is suitable to run in the Analytics Integrator OMIS.
It validates that it implements the correct interfaces and returns the connector type for the connector.
-
Method Summary
Modifier and TypeMethodDescriptionorg.odpi.openmetadata.commonservices.ffdc.properties.ConnectorReportvalidateConnector(String userId, String connectorProviderClassName) Validate the connector and return its connector type.
-
Method Details
-
validateConnector
org.odpi.openmetadata.commonservices.ffdc.properties.ConnectorReport validateConnector(String userId, String connectorProviderClassName) throws org.odpi.openmetadata.frameworks.connectors.ffdc.InvalidParameterException, org.odpi.openmetadata.frameworks.connectors.ffdc.UserNotAuthorizedException, org.odpi.openmetadata.frameworks.connectors.ffdc.PropertyServerException Validate the connector and return its connector type.- Parameters:
userId- calling userconnectorProviderClassName- name of a specific connector or null for all connectors- Returns:
- connector report for this connector
- Throws:
org.odpi.openmetadata.frameworks.connectors.ffdc.InvalidParameterException- the connector provider class name is not a valid connector fo this serviceorg.odpi.openmetadata.frameworks.connectors.ffdc.UserNotAuthorizedException- user not authorized to issue this requestorg.odpi.openmetadata.frameworks.connectors.ffdc.PropertyServerException- there was a problem detected by the integration service
-