Uses of Interface
com.ibm.di.config.interfaces.ConnectorConfig

Packages that use ConnectorConfig
com.ibm.di.config.base Provides classes that implement the Security Directory Integrator configuration model. 
com.ibm.di.config.interfaces Provides the interfaces for the Security Directory Integrator configuration model. 
com.ibm.di.config.xml Provides classes that implement the reading and writing of the Security Directory Integrator configuration components. 
com.ibm.di.connector Provides classes for the Directory Integrator's connectors. 
com.ibm.di.fc Provides classes for the Directory Integrator's function components. 
com.ibm.di.function Provides useful functions for the Security Directory Integrator. 
com.ibm.di.model.descriptor   
com.ibm.di.osgi   
com.ibm.di.server Provides classes for the Security Directory Integrator core engine. 
com.ibm.di.util Provides utility classes for the Security Directory Integrator. 
 

Uses of ConnectorConfig in com.ibm.di.config.base
 

Classes in com.ibm.di.config.base that implement ConnectorConfig
 class ALMappingConfigImpl
          This is the implementation class for the configuration of an AssemblyLine Attribute Map Component.
 class ConnectorConfigImpl
          This class implements the TDI Connector configuration.
 class FunctionConfigImpl
          The configuration for a TDI Function Component, e.g.
 

Fields in com.ibm.di.config.base declared as ConnectorConfig
protected  ConnectorConfig LoopConfigImpl.loopConnector
           
 

Methods in com.ibm.di.config.base that return ConnectorConfig
 ConnectorConfig AssemblyLineConfigImpl.getConnector(int position)
          Returns the connector attribute of the AssemblyLineConfig object
 ConnectorConfig MetamergeConfigImpl.getConnector(java.lang.Object name)
           
 ConnectorConfig AssemblyLineConfigImpl.getConnectorByName(java.lang.Object connectorName)
          Returns the connector attribute of the AssemblyLineConfig object
 ConnectorConfig LoopConfigImpl.getLoopConnector()
          Returns the Loop connector configuration
 

Methods in com.ibm.di.config.base with parameters of type ConnectorConfig
 void LoopConfigImpl.setLoopConnector(ConnectorConfig cc)
           
 

Uses of ConnectorConfig in com.ibm.di.config.interfaces
 

Subinterfaces of ConnectorConfig in com.ibm.di.config.interfaces
 interface ALMappingConfig
          The configuration for an AssemblyLine Attribute Map Component.
 interface FunctionConfig
          The configuration for a TDI Function Component, e.g.
 

Methods in com.ibm.di.config.interfaces that return ConnectorConfig
 ConnectorConfig AssemblyLineConfig.getConnector(int position)
          Returns the connector attribute of the AssemblyLineConfig object
 ConnectorConfig MetamergeConfig.getConnector(java.lang.Object name)
          Returns the ConnectorConfig object for the named connector.
 ConnectorConfig AssemblyLineConfig.getConnectorByName(java.lang.Object name)
          Returns the connector attribute of the AssemblyLineConfig object
 ConnectorConfig LoopConfig.getLoopConnector()
          Returns the Loop connector configuration
 

Uses of ConnectorConfig in com.ibm.di.config.xml
 

Methods in com.ibm.di.config.xml with parameters of type ConnectorConfig
 void ConnectorFactory.getAttributeMaps(org.w3c.dom.Element elem, ConnectorConfig config)
           
 void ConnectorFactory.getSchemas(org.w3c.dom.Element elem, ConnectorConfig config)
           
 void SchemaFactory.migrate(ConnectorConfig cc, org.w3c.dom.Element elem)
           
 void ConnectorFactory.setAttributeMaps(org.w3c.dom.Element elem, ConnectorConfig cc)
           
 void ConnectorFactory.setSchemas(org.w3c.dom.Element elem, ConnectorConfig cc)
           
 

Uses of ConnectorConfig in com.ibm.di.connector
 

Methods in com.ibm.di.connector with parameters of type ConnectorConfig
 java.util.Vector<java.lang.String> AssemblyLineConnector.getALModes(ConnectorConfig config)
          This method checks the defined operations of the target AL and returns them as a Vector of names.
 java.util.Vector<java.lang.String> AssemblyLineConnector.getModes(ConnectorConfig config)
          This method checks the defined operations of the target AL and returns them as a Vector of names.
 java.util.Vector<java.lang.String> Connector.getModes(ConnectorConfig config)
          Returns the connector's modes.
 void ConnectorInterface.queryOperations(ConnectorConfig config)
          Discover the operations for a connection given the provided configuration.
 void Connector.queryOperations(ConnectorConfig config)
          Discover the operations for a connection given the provided configuration.
 

Uses of ConnectorConfig in com.ibm.di.fc
 

Methods in com.ibm.di.fc with parameters of type ConnectorConfig
 boolean AssemblyLineFC.updateSchemaConnector(ConnectorConfig config)
          This method modifies the schema in the provided configuration.
 

Uses of ConnectorConfig in com.ibm.di.function
 

Methods in com.ibm.di.function that return ConnectorConfig
static ConnectorConfig SystemFunctions.createRuntimeConnector()
           
 

Methods in com.ibm.di.function with parameters of type ConnectorConfig
static ConnectorInterface SystemFunctions.loadConnector(ConnectorConfig config)
           
static ConnectorInterface SystemFunctions.loadConnector(ConnectorConfig config, java.lang.Object parentConfig)
           
static ConnectorInterface SystemFunctions.loadConnector(ConnectorConfig config, java.lang.Object parentConfig, RSInterface server)
           
 

Uses of ConnectorConfig in com.ibm.di.model.descriptor
 

Methods in com.ibm.di.model.descriptor with parameters of type ConnectorConfig
static ConnectorDescriptor DescriptorUtils.getConnectorDescriptor(java.lang.String connId, ConnectorConfig cfg)
          Generates a ConnectorDescriptor based on the tdi.xml for the connector specified by the provided parameters.
 

Uses of ConnectorConfig in com.ibm.di.osgi
 

Methods in com.ibm.di.osgi with parameters of type ConnectorConfig
 java.util.Vector<java.lang.String> ConnectorDelegate.getModes(ConnectorConfig config)
           
 void ConnectorDelegate.queryOperations(ConnectorConfig config)
           
 

Uses of ConnectorConfig in com.ibm.di.server
 

Fields in com.ibm.di.server declared as ConnectorConfig
protected  ConnectorConfig AssemblyLineComponent.config
          This is our configuration (with attribute maps, hooks etc ...)
 

Methods in com.ibm.di.server that return ConnectorConfig
 ConnectorConfig ScriptComponent.getConfiguration()
          This method returns the Connector configuration
 ConnectorConfig LoopComponent.getConfiguration()
          Returns the LoopConnector Config.
 ConnectorConfig BranchingComponent.getConfiguration()
          This method returns the Connector configuration
 ConnectorConfig AttributeMapComponent.getConfiguration()
          Returns the configuration for this component
 ConnectorConfig AssemblyLineComponent.getConfiguration()
           
 ConnectorConfig RSInterface.getConnector(java.lang.String name)
          Returns the "Connector" entry for name
 ConnectorConfig RS.getConnector(java.lang.String name)
          Returns the "Connector" entry for name
 

Methods in com.ibm.di.server with parameters of type ConnectorConfig
 void AssemblyLine.addRuntimeConnector(java.lang.String name, ConnectorConfig config, boolean executeProlog)
          This method creates an ALComponent from the provided connector config.
static boolean CSDeltaTaskComponent.deltaEnabled(ConnectorConfig config)
          Determines whether the delta of the given connector configuration is enable.
 AssemblyLinePool.ALWorker AssemblyLinePool.startThread(java.lang.String name, ConnectorConfig config)
          Starts a new thread with the provided connector config.
 

Constructors in com.ibm.di.server with parameters of type ConnectorConfig
AssemblyLineComponent(TaskInterface parent, java.lang.String name, ConnectorConfig config, ConnectorInterface conn)
          Constructor for the AssemblyLineComponent object
AssemblyLineComponent(TaskInterface parent, java.lang.String name, ConnectorConfig config, ConnectorInterface conn, boolean forceRuntime)
          Constructor for the AssemblyLineComponent object
AssemblyLinePool.ALWorker(java.lang.String name, ConnectorConfig config, AssemblyLinePool pool)
           
CSDeltaTaskComponent(AssemblyLine parent, java.lang.String name, ConnectorConfig config, ConnectorInterface conn, boolean isRestarting)
          Constructor.
CSDeltaTaskComponent(AssemblyLine parent, java.lang.String name, ConnectorConfig config, ConnectorInterface conn, boolean isRestarting, boolean forceRuntime)
          Constructor.
ReplyChannelComponent(ConnectorConfig config)
          Deprecated.  
ScriptComponent(AssemblyLine parent, java.lang.String name, ConnectorConfig config, ConnectorInterface conn)
          Constructor for the script component object.
 

Uses of ConnectorConfig in com.ibm.di.util
 

Methods in com.ibm.di.util that return ConnectorConfig
 ConnectorConfig HookTree.getConfig()
          Returns the Associated ConnectorConfig
 

Methods in com.ibm.di.util with parameters of type ConnectorConfig
static void SchemaUtils.convertEntryToSchema(Entry entry, ConnectorConfig cc, boolean input)
          Creates a schema item for each attribute in the entry.
static void SchemaUtils.convertEntryToSchemaHier(Entry entry, ConnectorConfig cc, boolean input)
          Creates a schema item for each attribute in the entry.
static java.lang.Object[] HooksUtil.getHookTree(ConnectorConfig cc)
           
static HookTree HookTree.getHookTree(ConnectorConfig cc)
          Return a new HookTree for a ConnectorConfig
static HookTree HookTree.getHookTree(ConnectorConfig cc, HookTree.Phase phase)
          Return a new HookTree for a ConnectorConfig in a given Phase.