Uses of Class
com.ca.jcs.cfg.ConnectorConfig

Packages that use ConnectorConfig
com.ca.jcs Contains all classes making up the implementation of CA Java Connector Server ("Java CS" or "JCS"), which supports connectors which take LDAP traffic in at the top level and convert it into the native language of the managed system with which they communicate. 
com.ca.jcs.jdbc   
com.ca.jcs.jndi This package provides support relating to the Java Naming and Directory Interface (JNDI) package of the JDK. 
com.ca.jcs.meta Contains components which are metadata driven or assist in the condensing of information derived from metadata to allow efficient processing. 
com.ca.jcs.ora   
com.ca.jcs.sdk This package contains a worked example demonstrating all core elements involved in implementation of a JCS hosted connector, such as: example supporting metadata and configuration files. 
com.ca.jcs.sdkws This package contains an example that demonstrates the implementation of a web service JCS hosted connector. 
com.ca.jcs.stub This package contains support for stub connector classes needed for connectors implemented entirely using scripting. 
 

Uses of ConnectorConfig in com.ca.jcs
 

Methods in com.ca.jcs that return ConnectorConfig
 ConnectorConfig Connector.getConnectorConfig()
           
 ConnectorConfig BaseConnector.getConnectorConfig()
          Return the configuration for this connector, usually initialized from /conf/connector.xml using Spring XML.
 ConnectorConfig ImplBundle.getDefaultConnectorConfig()
           
 ConnectorConfig ConnectorType.getDefaultConnectorConfig()
          Default connector configuration, which may be further specialised version of the configuration passed in with the implementation bundle.
 

Methods in com.ca.jcs with parameters of type ConnectorConfig
 void Connector.setConnectorConfig(ConnectorConfig connectorConfig)
           
 void BaseConnector.setConnectorConfig(ConnectorConfig cfg)
           
 void ImplBundle.setDefaultConnectorConfig(ConnectorConfig cfg)
          The constructor for the concrete connector instance is passed an instance of class deriving from connectorConfig (created by conf/connector.xml contained in connector's jcs-connector-*.jar file) so that it can be used to initialize the connector.
 void ConnectorType.setDefaultConnectorConfig(ConnectorConfig cfg)
           
 

Constructors in com.ca.jcs with parameters of type ConnectorConfig
BaseConnector(ConnectorType type, String name, Logger log, ConnectorConfig config)
           
 

Uses of ConnectorConfig in com.ca.jcs.jdbc
 

Subclasses of ConnectorConfig in com.ca.jcs.jdbc
 class JDBCMetaConnectorConfig
          Template of settings which can be applied to a connector, which can then override settings.
 

Constructors in com.ca.jcs.jdbc with parameters of type ConnectorConfig
JDBCMetaConnector(ConnectorType type, String name, Logger log, ConnectorConfig config)
           
 

Uses of ConnectorConfig in com.ca.jcs.jndi
 

Subclasses of ConnectorConfig in com.ca.jcs.jndi
 class JNDIMetaConnectorConfig
          Configuration which basically allows all GenericObjectPool.Config properties to be set via bean getters/setters, and allows a map of settings to be provided which override any default settings in code.
 

Constructors in com.ca.jcs.jndi with parameters of type ConnectorConfig
JNDIMetaConnector(ConnectorType type, String name, Logger log, ConnectorConfig config)
           
 

Uses of ConnectorConfig in com.ca.jcs.meta
 

Subclasses of ConnectorConfig in com.ca.jcs.meta
 class MetaConnectorConfig
          Common configuration for connectors configured via metadata - adds optional support for specification of VirtualContainerConfigs used to create virtual containers around object types in otherwise non-hierarchical connectors.
 class MetaPoolingConnectorConfig
          Used to configure MetaConnectors that requiring pooling implementations based on Jakarta Commons Pool's GenericObjectPool which can be configured using the generic methods contained below.
 

Constructors in com.ca.jcs.meta with parameters of type ConnectorConfig
MetaConnector(ConnectorType type, String name, Logger log, ConnectorConfig config)
          Create a connector, including settings from a configuration object.
MetaConnectorType(String type, ImplBundle bundle, ConnectorConfig connConfig)
           
 

Uses of ConnectorConfig in com.ca.jcs.ora
 

Constructors in com.ca.jcs.ora with parameters of type ConnectorConfig
ORAMetaConnector(ConnectorType type, String name, Logger log, ConnectorConfig config)
           
 

Uses of ConnectorConfig in com.ca.jcs.sdk
 

Constructors in com.ca.jcs.sdk with parameters of type ConnectorConfig
SDKMetaConnector(ConnectorType type, String name, Logger log, ConnectorConfig config)
          have to implement this constructor signiture, otherwise JCS will fail to load.
 

Uses of ConnectorConfig in com.ca.jcs.sdkws
 

Subclasses of ConnectorConfig in com.ca.jcs.sdkws
 class SDKWSMetaConnectorConfig
          The WS MetaConnectorConfig class for storing default configuration.
 

Constructors in com.ca.jcs.sdkws with parameters of type ConnectorConfig
SDKWSMetaConnector(ConnectorType type, String name, Logger log, ConnectorConfig config)
          The default constructor for MetaConnector instances.
SDKWSMetaConnectorType(String type, ImplBundle bundle, ConnectorConfig connConfig)
          Default constructor for this class.
 

Uses of ConnectorConfig in com.ca.jcs.stub
 

Subclasses of ConnectorConfig in com.ca.jcs.stub
 class StubMetaConnectorConfig
          Allows some behavioural values normally hard-wired in each connector implementation to be set via Spring XML, because the nature of StubMetaConnector is that it used as a place holder for scripting connectors etc and consequently needs to be more configurable.
 

Constructors in com.ca.jcs.stub with parameters of type ConnectorConfig
StubMetaConnector(ConnectorType type, String name, Logger log, ConnectorConfig config)
          have to implement this constructor signiture, otherwise JCS will fail to load.
 



Created 2011-07-14 13:27 EST