Interface OrganizationIntegratorAPI
-
public interface OrganizationIntegratorAPIOrganizationIntegratorAPI is the interface to validate that a connector is suitable to run in the Organization Integrator OMIS. It validates that it implements the correct interfaces and returns the connector type for the connector.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConnectorTypevalidateConnector(String userId, String connectorProviderClassName)Validate the connector and return its connector type.
-
-
-
Method Detail
-
validateConnector
ConnectorType validateConnector(String userId, String connectorProviderClassName) throws InvalidParameterException, UserNotAuthorizedException, 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 type for this connector
- Throws:
InvalidParameterException- the connector provider class name is not a valid connector fo this serviceUserNotAuthorizedException- user not authorized to issue this requestPropertyServerException- there was a problem detected by the integration service
-
-