JSecurity

Uses of Interface
org.jsecurity.cache.CacheManager

Packages that use CacheManager
org.jsecurity.cache Caching support used to enhance performance for any security operation. 
org.jsecurity.cache.ehcache Ehcache-based implementations of JSecurity's cache interfaces. 
org.jsecurity.mgt Provides the master SecurityManager interface and a default implementation hierarchy for managing all aspects of JSecurity's functionality in an application. 
org.jsecurity.realm Components and sub-packages used in supporting the core Realm interface. 
org.jsecurity.realm.text Realms that acquire security data from text-based data sources such as Files or text streams. 
org.jsecurity.session.mgt SessionManager components supporting enterprise session management. 
org.jsecurity.session.mgt.eis EIS (Enterprise Information System)-tier components that can perform CRUD operations for sessions using any EIS API. 
 

Uses of CacheManager in org.jsecurity.cache
 

Classes in org.jsecurity.cache that implement CacheManager
 class HashtableCacheManager
          A CacheManager that returns HashtableCache caches.
 

Methods in org.jsecurity.cache with parameters of type CacheManager
 void CacheManagerAware.setCacheManager(CacheManager cacheManager)
          Sets the available CacheManager instance on this component.
 

Uses of CacheManager in org.jsecurity.cache.ehcache
 

Classes in org.jsecurity.cache.ehcache that implement CacheManager
 class EhCacheManager
          JSecurity CacheManager implementation utilizing the Ehcache framework for all cache functionality.
 

Uses of CacheManager in org.jsecurity.mgt
 

Fields in org.jsecurity.mgt declared as CacheManager
protected  CacheManager CachingSecurityManager.cacheManager
          The CacheManager to use to perform caching operations to enhance performance.
 

Methods in org.jsecurity.mgt that return CacheManager
protected  CacheManager CachingSecurityManager.createCacheManager()
          Creates a CacheManager instance to be used by this SecurityManager and potentially any of its children components.
 CacheManager CachingSecurityManager.getCacheManager()
          Returns the CacheManager used by this SecurityManager.
 

Methods in org.jsecurity.mgt with parameters of type CacheManager
 void CachingSecurityManager.setCacheManager(CacheManager cacheManager)
          Sets the CacheManager used by this SecurityManager and potentially any of its children components.
 

Uses of CacheManager in org.jsecurity.realm
 

Methods in org.jsecurity.realm that return CacheManager
 CacheManager CachingRealm.getCacheManager()
          Returns the CacheManager used for data caching to reduce EIS round trips, or null if caching is disabled.
 

Methods in org.jsecurity.realm with parameters of type CacheManager
 void CachingRealm.setCacheManager(CacheManager authzInfoCacheManager)
          Sets the CacheManager to be used for data caching to reduce EIS round trips.
 

Constructors in org.jsecurity.realm with parameters of type CacheManager
AuthenticatingRealm(CacheManager cacheManager)
           
AuthenticatingRealm(CacheManager cacheManager, CredentialsMatcher matcher)
           
AuthorizingRealm(CacheManager cacheManager)
           
AuthorizingRealm(CacheManager cacheManager, CredentialsMatcher matcher)
           
CachingRealm(CacheManager cacheManager)
           
 

Uses of CacheManager in org.jsecurity.realm.text
 

Constructors in org.jsecurity.realm.text with parameters of type CacheManager
PropertiesRealm(CacheManager cacheManager)
           
 

Uses of CacheManager in org.jsecurity.session.mgt
 

Methods in org.jsecurity.session.mgt with parameters of type CacheManager
 void DefaultSessionManager.setCacheManager(CacheManager cacheManager)
           
 

Uses of CacheManager in org.jsecurity.session.mgt.eis
 

Methods in org.jsecurity.session.mgt.eis that return CacheManager
 CacheManager CachingSessionDAO.getCacheManager()
          Returns the CacheManager used by the implementation that creates the activeSessions Cache.
 

Methods in org.jsecurity.session.mgt.eis with parameters of type CacheManager
 void CachingSessionDAO.setCacheManager(CacheManager cacheManager)
          Sets the cacheManager to use for constructing the session cache.
 


JSecurity

Copyright © 2004-2008 JSecurity.