public interface ITransformationConnectionManager
Modifier and Type | Method and Description |
---|---|
boolean |
checkConnectorExists(String name)
Check if underlying connector exists.
|
ITransformationConnection |
create()
Create a new transformation connection object.
|
void |
deinstall()
Uninstall the manager.
|
void |
delete(String name)
Delete a transformation connection.
|
void |
exportConfiguration(OutputStream os)
Export configuration
|
String[] |
findConnectionsForConnector(String className)
Get a list of transformation connections that share the same connector.
|
ITransformationConnection[] |
getAllConnections()
Obtain a list of the transformation connections, ordered by name.
|
String |
getConnectionNameColumn()
Return the name column.
|
String |
getTableName()
Return the primary table name.
|
void |
importConfiguration(InputStream is)
Import configuration
|
void |
install()
Install the manager.
|
ITransformationConnection |
load(String name)
Load an transformation connection by name.
|
ITransformationConnection[] |
loadMultiple(String[] names)
Load a set of transformation connections.
|
boolean |
save(ITransformationConnection object)
Save a transformation connection object.
|
static final String _rcsid
void install() throws ManifoldCFException
ManifoldCFException
void deinstall() throws ManifoldCFException
ManifoldCFException
void exportConfiguration(OutputStream os) throws IOException, ManifoldCFException
IOException
ManifoldCFException
void importConfiguration(InputStream is) throws IOException, ManifoldCFException
IOException
ManifoldCFException
ITransformationConnection[] getAllConnections() throws ManifoldCFException
ManifoldCFException
ITransformationConnection load(String name) throws ManifoldCFException
name
- is the name of the transformation connection.ManifoldCFException
ITransformationConnection[] loadMultiple(String[] names) throws ManifoldCFException
names
- are the names of the transformation connections.ManifoldCFException
ITransformationConnection create() throws ManifoldCFException
ManifoldCFException
boolean save(ITransformationConnection object) throws ManifoldCFException
object
- is the object to save.ManifoldCFException
void delete(String name) throws ManifoldCFException
name
- is the name of the connection to delete. If the
name does not exist, no error is returned.ManifoldCFException
String[] findConnectionsForConnector(String className) throws ManifoldCFException
className
- is the class name of the connector.ManifoldCFException
boolean checkConnectorExists(String name) throws ManifoldCFException
name
- is the name of the connection to check.ManifoldCFException
String getTableName()
String getConnectionNameColumn()