Package oracle.iam.connectormgmt.api
Interface ConnectorMgmtService
public interface ConnectorMgmtService
Provides APIS to to manage(install etc) connectors.
- Author:
- nihashar
-
Method Summary
Modifier and TypeMethodDescriptionvoid
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
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 ConnectorDefaultDirectoryconnectorInstallXML
- 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.
-