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