Class ConnectorFacadeFactory
- java.lang.Object
-
- org.identityconnectors.framework.api.ConnectorFacadeFactory
-
public abstract class ConnectorFacadeFactory extends Object
Allows an application to obtain aconnector instance. Manages a pool of connector instances.- Since:
- 1.0
- Author:
- Will Droste
-
-
Constructor Summary
Constructors Constructor Description ConnectorFacadeFactory()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract voiddispose()Shut down of all connector pools, resources, etc.static ConnectorFacadeFactorygetInstance()Get the singleton instance of theConnectorFacadeFactory.static ConnectorFacadeFactorygetManagedInstance()Get the singleton instance of the statefulConnectorFacadeFactory.abstract ConnectorFacadenewInstance(APIConfiguration config)Get a new instance ofConnectorFacade.abstract ConnectorFacadenewInstance(ConnectorInfo connectorInfo, String config)Get a new instance ofConnectorFacade.
-
-
-
Method Detail
-
getInstance
public static ConnectorFacadeFactory getInstance()
Get the singleton instance of theConnectorFacadeFactory.
-
getManagedInstance
public static ConnectorFacadeFactory getManagedInstance()
Get the singleton instance of the statefulConnectorFacadeFactory.- Since:
- 1.4
-
dispose
public abstract void dispose()
Shut down of all connector pools, resources, etc. The framework will release all the resources. No operations will be possible until the framework is re-initialized.
-
newInstance
public abstract ConnectorFacade newInstance(APIConfiguration config)
Get a new instance ofConnectorFacade.- Parameters:
config- all the configuration that the framework, connector, and pooling needs.- Returns:
ConnectorFacadeto call API operations against.
-
newInstance
public abstract ConnectorFacade newInstance(ConnectorInfo connectorInfo, String config)
Get a new instance ofConnectorFacade.- Parameters:
connectorInfo- TODO Add JavaDoc laterconfig- all the configuration that the framework, connector, and pooling needs. It's a Base64 serialised APIConfiguration instance.- Returns:
ConnectorFacadeto call API operations against.- Since:
- 1.4
-
-