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 HashtableCacheProvider.buildCache(java.lang.String regionName, java.util.Properties properties)
           
 Cache CacheProvider.buildCache(java.lang.String regionName, java.util.Properties properties)
          Deprecated. Configure the cache
 Cache NoCacheProvider.buildCache(java.lang.String regionName, java.util.Properties properties)
          Configure the cache
 Cache CacheConcurrencyStrategy.getCache()
          Deprecated. Get the wrapped cache implementation
 Cache ReadOnlyCache.getCache()
           
 Cache ReadWriteCache.getCache()
           
 Cache TransactionalCache.getCache()
           
 Cache NonstrictReadWriteCache.getCache()
           
 

Methods in org.hibernate.cache with parameters of type Cache
 void CacheConcurrencyStrategy.setCache(Cache cache)
          Deprecated. Set the underlying cache implementation.
 void ReadOnlyCache.setCache(Cache cache)
           
 void ReadWriteCache.setCache(Cache cache)
           
 void TransactionalCache.setCache(Cache cache)
           
 void NonstrictReadWriteCache.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.