Uses of Interface
org.apache.shiro.cache.CacheManager
-
Packages that use CacheManager Package Description org.apache.shiro.cache Caching support used to enhance performance for security operations.org.apache.shiro.cache.ehcache Ehcache-based implementations of Shiro's cache interfaces.org.apache.shiro.hazelcast.cache org.apache.shiro.mgt Provides the masterSecurityManager
interface and a default implementation hierarchy for managing all aspects of Shiro's functionality in an application.org.apache.shiro.realm Components and sub-packages used in supporting the coreRealm
interface.org.apache.shiro.session.mgt SessionManager
components supporting enterprise session management.org.apache.shiro.session.mgt.eis EIS (Enterprise Information System)-tier components that can perform CRUD operations for sessions using any EIS API.org.apache.shiro.spring.config -
-
Uses of CacheManager in org.apache.shiro.cache
Classes in org.apache.shiro.cache that implement CacheManager Modifier and Type Class Description class
AbstractCacheManager
Very simple abstractCacheManager
implementation that retains all createdCache
instances in an in-memoryConcurrentMap
.class
MemoryConstrainedCacheManager
Simple memory-only basedCacheManager
implementation usable in production environments.Methods in org.apache.shiro.cache with parameters of type CacheManager Modifier and Type Method Description void
CacheManagerAware. setCacheManager(CacheManager cacheManager)
Sets the available CacheManager instance on this component. -
Uses of CacheManager in org.apache.shiro.cache.ehcache
Classes in org.apache.shiro.cache.ehcache that implement CacheManager Modifier and Type Class Description class
EhCacheManager
ShiroCacheManager
implementation utilizing the Ehcache framework for all cache functionality. -
Uses of CacheManager in org.apache.shiro.hazelcast.cache
Classes in org.apache.shiro.hazelcast.cache that implement CacheManager Modifier and Type Class Description class
HazelcastCacheManager
ACacheManager
implementation backed by Hazelcast, "an open source clustering and highly scalable data distribution platform for Java" -
Uses of CacheManager in org.apache.shiro.mgt
Methods in org.apache.shiro.mgt that return CacheManager Modifier and Type Method Description CacheManager
CachingSecurityManager. getCacheManager()
Returns the CacheManager used by this SecurityManager.Methods in org.apache.shiro.mgt with parameters of type CacheManager Modifier and Type Method Description void
CachingSecurityManager. setCacheManager(CacheManager cacheManager)
Sets the CacheManager used by thisSecurityManager
and potentially any of its children components. -
Uses of CacheManager in org.apache.shiro.realm
Methods in org.apache.shiro.realm that return CacheManager Modifier and Type Method Description CacheManager
CachingRealm. getCacheManager()
Returns the CacheManager used for data caching to reduce EIS round trips, or null if caching is disabled.Methods in org.apache.shiro.realm with parameters of type CacheManager Modifier and Type Method Description void
CachingRealm. setCacheManager(CacheManager cacheManager)
Sets the CacheManager to be used for data caching to reduce EIS round trips.Constructors in org.apache.shiro.realm with parameters of type CacheManager Constructor Description AuthenticatingRealm(CacheManager cacheManager)
AuthenticatingRealm(CacheManager cacheManager, CredentialsMatcher matcher)
AuthorizingRealm(CacheManager cacheManager)
AuthorizingRealm(CacheManager cacheManager, CredentialsMatcher matcher)
-
Uses of CacheManager in org.apache.shiro.session.mgt
Methods in org.apache.shiro.session.mgt with parameters of type CacheManager Modifier and Type Method Description void
DefaultSessionManager. setCacheManager(CacheManager cacheManager)
-
Uses of CacheManager in org.apache.shiro.session.mgt.eis
Methods in org.apache.shiro.session.mgt.eis that return CacheManager Modifier and Type Method Description CacheManager
CachingSessionDAO. getCacheManager()
Returns the CacheManager to use for acquiring theactiveSessionsCache
if one is not configured.Methods in org.apache.shiro.session.mgt.eis with parameters of type CacheManager Modifier and Type Method Description void
CachingSessionDAO. setCacheManager(CacheManager cacheManager)
Sets the cacheManager to use for acquiring theactiveSessionsCache
if one is not configured. -
Uses of CacheManager in org.apache.shiro.spring.config
Fields in org.apache.shiro.spring.config declared as CacheManager Modifier and Type Field Description protected CacheManager
AbstractShiroConfiguration. cacheManager
-