Interface ConnectorMgmtService


public interface ConnectorMgmtService
Provides APIS to to manage(install etc) connectors.
Author:
nihashar
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    installConnector(String connectorPkgName)
    Installs connector from a exploded ConnectorPackage in the ConnectorDefaultDirectory.
    void
    installConnector(String connectorPkgName, String connectorInstallXML)
    Installs connector from a exploded ConnectorPackage in the ConnectorDefaultDirectory.
  • Method Details

    • installConnector

      void installConnector(String connectorPkgName) throws ConnectorInstallException
      Installs connector from a exploded ConnectorPackage in the ConnectorDefaultDirectory. It is assumed that the expanded folder is in the standard format for connector zips and contains a Connector Install xml in configuration folder
      Parameters:
      connectorPkg - the name of the expanded connector package in the ConnectorDefaultDirectory
      Throws:
      ConnectorInstallException - if there is any exception during connector install- including exceptions while unmarshalling CI xml, uploading jars and resource bundles to DB and importing DM xml etc.
    • installConnector

      void installConnector(String connectorPkgName, String connectorInstallXML) throws ConnectorInstallException
      Installs connector from a exploded ConnectorPackage in the ConnectorDefaultDirectory. It is assumed that the expanded folder is in the standard format for connector zips and contains a Connector Install xml in configuration folder
      Parameters:
      connectorPkg - the name of the expanded connector package in the ConnectorDefaultDirectory
      connectorInstallXML - if there are more than one CI XMLs in the connector package.
      Throws:
      ConnectorInstallException - if there is any exception during connector install- including exceptions while unmarshalling CI xml, uploading jars and resource bundles to DB and importing DM xml etc.