Class TstStatefulConnector
java.lang.Object
org.identityconnectors.testconnector.TstAbstractConnector
org.identityconnectors.testconnector.TstStatefulConnector
- All Implemented Interfaces:
Connector
,CreateOp
,DeleteOp
,LiveSyncOp
,SearchOp<Filter>
,SPIOperation
,SyncOp
-
Field Summary
Fields inherited from class org.identityconnectors.testconnector.TstAbstractConnector
config
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
dispose()
Dispose of any resources theConnector
uses.Return the configuration that was passed toConnector.init(Configuration)
.void
init
(Configuration cfg) Initialize the connector with its configuration.Methods inherited from class org.identityconnectors.testconnector.TstAbstractConnector
create, createFilterTranslator, delete, executeQuery, getLatestSyncToken, livesync, sync
-
Constructor Details
-
TstStatefulConnector
public TstStatefulConnector()
-
-
Method Details
-
init
Description copied from interface:Connector
Initialize the connector with its configuration. For instance in a JDBCConnector
this would include the database URL, password, and user.- Specified by:
init
in interfaceConnector
- Overrides:
init
in classTstAbstractConnector
- Parameters:
cfg
- instance of theConfiguration
object implemented by theConnector
developer and populated with information in order to initialize theConnector
.
-
getConfiguration
Description copied from interface:Connector
Return the configuration that was passed toConnector.init(Configuration)
.- Specified by:
getConfiguration
in interfaceConnector
- Returns:
- The configuration that was passed to
Connector.init(Configuration)
.
-
dispose
public void dispose()Description copied from interface:Connector
Dispose of any resources theConnector
uses.
-