Uses of Interface
com.ca.jcs.ConnectionManager

Packages that use ConnectionManager
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.cfg Collection of classes used to configure the JCS and its contained components. 
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.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.sdkws.connection This package contains classes related to making and maintaining connections to the web service endpoint. 
com.ca.jcs.stub This package contains support for stub connector classes needed for connectors implemented entirely using scripting. 
 

Uses of ConnectionManager in com.ca.jcs
 

Methods in com.ca.jcs that return ConnectionManager
 ConnectionManager Connector.createConnectionManager()
           
 ConnectionManager BaseConnector.createConnectionManager()
          Create a connection manager, which is a concept expected to be supported by the vast majority of connectors.
 ConnectionManager Connector.getConnectionManager()
           
 ConnectionManager BaseConnector.getConnectionManager()
           
 

Methods in com.ca.jcs with parameters of type ConnectionManager
 void Connector.setConnectionManager(ConnectionManager mgr)
           
 void BaseConnector.setConnectionManager(ConnectionManager mgr)
           
 

Uses of ConnectionManager in com.ca.jcs.cfg
 

Classes in com.ca.jcs.cfg that implement ConnectionManager
 class GenericObjectPoolConnectionManager
          Simple adapter that delegates methods from connection manager to obvious matching methods on a pool.
 

Uses of ConnectionManager in com.ca.jcs.jdbc
 

Classes in com.ca.jcs.jdbc that implement ConnectionManager
 class JDBCConnectionManager
          Simplistic connection manager wrapping a datasource and returning Connections.
 

Methods in com.ca.jcs.jdbc that return ConnectionManager
 ConnectionManager JDBCMetaConnector.createConnectionManager()
          Not expected to to be used universally, see comments in JDBCConnectionManager.
 

Uses of ConnectionManager in com.ca.jcs.jndi
 

Classes in com.ca.jcs.jndi that implement ConnectionManager
 class JNDIConnectionPool
          Management of a pool of JNDI connections (InitialDirContexts) based on provided configuration jndiEnv using JNDIConnectionFactory to create brand new connections where there are not enough already in the pool.
 class JNDIKerberosConnectionPool
           
 

Methods in com.ca.jcs.jndi that return ConnectionManager
 ConnectionManager JNDIMetaConnector.createConnectionManager()
           
 

Uses of ConnectionManager in com.ca.jcs.sdk
 

Classes in com.ca.jcs.sdk that implement ConnectionManager
 class SDKConnectionManager
          This class is a bit contrived as the SDK sample is not very realistic in the sense that no "connections" are really required for it to do its work (ie managing local files).
 

Methods in com.ca.jcs.sdk that return ConnectionManager
 ConnectionManager SDKMetaConnector.createConnectionManager()
           
 

Uses of ConnectionManager in com.ca.jcs.sdkws
 

Methods in com.ca.jcs.sdkws that return ConnectionManager
 ConnectionManager SDKWSMetaConnector.createConnectionManager()
          Return a ConnectionManager to manage connection sessions.
 

Uses of ConnectionManager in com.ca.jcs.sdkws.connection
 

Classes in com.ca.jcs.sdkws.connection that implement ConnectionManager
 class SDKWSConnectionPool
           
 

Uses of ConnectionManager in com.ca.jcs.stub
 

Classes in com.ca.jcs.stub that implement ConnectionManager
 class StubMetaConnectionPool
          Sample 'dummy' stub connection pooling class Shows how to write custom connection pooling class invokable via 'connectionManagerClass' property in connector.xml.
 

Methods in com.ca.jcs.stub that return ConnectionManager
 ConnectionManager StubMetaConnector.createConnectionManager()
          Creates connector's custom connection pooling class.
 



Created 2011-07-14 13:27 EST