Uses of Interface
org.hibernate.cache.Cache

Packages that use Cache
org.hibernate.cache This package defines APIs/SPIs and implementations for the Hibernate second-level cache. 
org.hibernate.cache.impl.bridge   
 

Uses of Cache in org.hibernate.cache
 

Subinterfaces of Cache in org.hibernate.cache
 interface OptimisticCache
          A contract for transactional cache implementations which support optimistic locking of items within the cache.
 

Classes in org.hibernate.cache that implement Cache
 class HashtableCache
          A lightweight implementation of the Cache interface
 

Methods in org.hibernate.cache that return Cache
 Cache CacheProvider.buildCache(java.lang.String regionName, java.util.Properties properties)
          Deprecated. Configure the cache
 Cache HashtableCacheProvider.buildCache(java.lang.String regionName, java.util.Properties properties)
           
 Cache NoCacheProvider.buildCache(java.lang.String regionName, java.util.Properties properties)
          Configure the cache
 Cache NonstrictReadWriteCache.getCache()
           
 Cache CacheConcurrencyStrategy.getCache()
          Deprecated. Get the wrapped cache implementation
 Cache ReadWriteCache.getCache()
           
 Cache TransactionalCache.getCache()
           
 Cache ReadOnlyCache.getCache()
           
 

Methods in org.hibernate.cache with parameters of type Cache
 void NonstrictReadWriteCache.setCache(Cache cache)
           
 void CacheConcurrencyStrategy.setCache(Cache cache)
          Deprecated. Set the underlying cache implementation.
 void ReadWriteCache.setCache(Cache cache)
           
 void TransactionalCache.setCache(Cache cache)
           
 void ReadOnlyCache.setCache(Cache cache)
           
 

Uses of Cache in org.hibernate.cache.impl.bridge
 

Fields in org.hibernate.cache.impl.bridge declared as Cache
protected  Cache BaseRegionAdapter.underlyingCache
           
 

Constructors in org.hibernate.cache.impl.bridge with parameters of type Cache
BaseGeneralDataRegionAdapter(Cache underlyingCache, Settings settings)
           
BaseRegionAdapter(Cache underlyingCache, Settings settings)
           
BaseTransactionalDataRegionAdapter(Cache underlyingCache, Settings settings, CacheDataDescription metadata)
           
CollectionRegionAdapter(Cache underlyingCache, Settings settings, CacheDataDescription metadata)
           
EntityRegionAdapter(Cache underlyingCache, Settings settings, CacheDataDescription metadata)
           
QueryResultsRegionAdapter(Cache underlyingCache, Settings settings)
           
TimestampsRegionAdapter(Cache underlyingCache, Settings settings)
           
 



Copyright © 2008 Hibernate.org. All Rights Reserved.