public interface IMappingConnectorManager
Modifier and Type | Method and Description |
---|---|
void |
deinstall()
Uninstall.
|
IResultSet |
getConnectors()
Get ordered list of connectors.
|
java.lang.String |
getDescription(java.lang.String className)
Get a description given a class name.
|
void |
install()
Install.
|
boolean |
isInstalled(java.lang.String className)
Check if a particular connector is installed or not.
|
void |
registerConnector(java.lang.String description,
java.lang.String className)
Register a new connector.
|
void |
removeConnector(java.lang.String className)
Remove a connector.
|
void |
unregisterConnector(java.lang.String className)
Unregister a connector.
|
void install() throws ManifoldCFException
ManifoldCFException
void deinstall() throws ManifoldCFException
ManifoldCFException
void registerConnector(java.lang.String description, java.lang.String className) throws ManifoldCFException
description
- is the description to use in the UI.className
- is the class name.ManifoldCFException
void unregisterConnector(java.lang.String className) throws ManifoldCFException
className
- is the connector class to unregister.ManifoldCFException
void removeConnector(java.lang.String className) throws ManifoldCFException
className
- is the connector class to remove.ManifoldCFException
IResultSet getConnectors() throws ManifoldCFException
ManifoldCFException
java.lang.String getDescription(java.lang.String className) throws ManifoldCFException
className
- is the class name.ManifoldCFException
boolean isInstalled(java.lang.String className) throws ManifoldCFException
className
- is the class name of the connector.ManifoldCFException