Uses of Class
com.ca.jcs.cache.CacheManager

Packages that use CacheManager
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.cache Contains experimental caching support, of particular interest for hierarchical connectors and those making use of the connectorMapToAmbiguous= metadata property as can reduce need to query the endpoint to determine which connector-speak Distinguished Names (DNs) match a given LDAP DN. 
com.ca.jcs.cfg Collection of classes used to configure the JCS and its contained components. 
 

Uses of CacheManager in com.ca.jcs
 

Methods in com.ca.jcs that return CacheManager
 CacheManager BaseConnector.getCacheManager()
           
 

Methods in com.ca.jcs with parameters of type CacheManager
 void BaseConnector.setCacheManager(CacheManager cacheManager)
           
 

Uses of CacheManager in com.ca.jcs.cache
 

Subclasses of CacheManager in com.ca.jcs.cache
 class EHCacheManager
          Cache manager making use of EHCache, defining two different caches; one for containers and one for leafObjects.
 

Methods in com.ca.jcs.cache that return CacheManager
 CacheManager CachingConnector.getCacheManager()
           
 

Methods in com.ca.jcs.cache with parameters of type CacheManager
 void CachingConnector.setCacheManager(CacheManager cacheManager)
           
 

Uses of CacheManager in com.ca.jcs.cfg
 

Methods in com.ca.jcs.cfg that return types with arguments of type CacheManager
 Class<? extends CacheManager> ConnectorConfig.getCacheManagerClass()
           
 

Method parameters in com.ca.jcs.cfg with type arguments of type CacheManager
 void ConnectorConfig.setCacheManagerClass(Class<? extends CacheManager> cacheManagerClass)
          Can be set to a class which extends CacheManager, but will be ignored unless connector's BaseConnector.isCachingRequired() returns true (signifying that caching makes sense for it's domain).
 



Created 2011-07-14 13:27 EST