Uses of Interface
com.ca.jcs.TransactionManager

Packages that use TransactionManager
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.util This package is used to group useful generic framework utilities not strongly tied to a particular functional area. 
 

Uses of TransactionManager in com.ca.jcs
 

Methods in com.ca.jcs that return TransactionManager
 TransactionManager Connector.createTransactionManager()
          Optionally implemented method, where tranactions are supported for a particular connector technology and configuration.
 TransactionManager BaseConnector.createTransactionManager()
          Must be overridden by connectors that support the concept of a transaction manager, return null unless overridden.
 TransactionManager Connector.getTransactionManager()
           
 TransactionManager BaseConnector.getTransactionManager()
          Return transaction manager, which defaults to null but should be overridden by derived classes as appropriate.
 

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

Uses of TransactionManager in com.ca.jcs.jdbc
 

Fields in com.ca.jcs.jdbc declared as TransactionManager
protected  TransactionManager JDBCAttributeStyleOpProcessor.transactionManager
           
 

Methods in com.ca.jcs.jdbc that return TransactionManager
 TransactionManager JDBCMetaConnector.createTransactionManager()
          Returns a transaction manager arranges for the transaction be used for all nested updates within the same thread.
 

Uses of TransactionManager in com.ca.jcs.util
 

Classes in com.ca.jcs.util that implement TransactionManager
 class NullTransactionManager
          Empty transaction manager which may be useful for connectors which support transactions, but only on particular configuration in which case using an instance of this class removes then need for repeated !
 



Created 2011-07-14 13:27 EST