Uses of Interface
org.hibernate.cache.spi.Region

Packages that use Region
org.hibernate.cache.ehcache.internal.regions   
org.hibernate.cache.infinispan.collection   
org.hibernate.cache.infinispan.entity   
org.hibernate.cache.infinispan.impl   
org.hibernate.cache.infinispan.naturalid   
org.hibernate.cache.infinispan.query   
org.hibernate.cache.infinispan.timestamp   
org.hibernate.cache.spi Defines the Hibernate second level caching SPI. 
org.hibernate.engine.spi   
org.hibernate.internal An internal package containing mostly implementations of central Hibernate APIs. 
 

Uses of Region in org.hibernate.cache.ehcache.internal.regions
 

Classes in org.hibernate.cache.ehcache.internal.regions that implement Region
 class EhcacheCollectionRegion
          A collection region specific wrapper around an Ehcache instance.
 class EhcacheDataRegion
          An Ehcache specific data region implementation.
 class EhcacheEntityRegion
          An entity region specific wrapper around an Ehcache instance.
 class EhcacheNaturalIdRegion
          A collection region specific wrapper around an Ehcache instance.
 class EhcacheQueryResultsRegion
          A query results region specific wrapper around an Ehcache instance.
 class EhcacheTimestampsRegion
          A timestamps region specific wrapper around an Ehcache instance.
 class EhcacheTransactionalDataRegion
          An Ehcache specific TransactionalDataRegion.
 

Uses of Region in org.hibernate.cache.infinispan.collection
 

Classes in org.hibernate.cache.infinispan.collection that implement Region
 class CollectionRegionImpl
           
 

Uses of Region in org.hibernate.cache.infinispan.entity
 

Classes in org.hibernate.cache.infinispan.entity that implement Region
 class EntityRegionImpl
           
 

Uses of Region in org.hibernate.cache.infinispan.impl
 

Classes in org.hibernate.cache.infinispan.impl that implement Region
 class BaseGeneralDataRegion
          Support for Infinispan GeneralDataRegion implementors.
 class BaseRegion
          Support for Infinispan Regions.
 class BaseTransactionalDataRegion
          Support for Inifinispan TransactionalDataRegion implementors.
 

Uses of Region in org.hibernate.cache.infinispan.naturalid
 

Classes in org.hibernate.cache.infinispan.naturalid that implement Region
 class NaturalIdRegionImpl
          Natural ID cache region
 

Uses of Region in org.hibernate.cache.infinispan.query
 

Classes in org.hibernate.cache.infinispan.query that implement Region
 class QueryResultsRegionImpl
           
 

Uses of Region in org.hibernate.cache.infinispan.timestamp
 

Classes in org.hibernate.cache.infinispan.timestamp that implement Region
 class ClusteredTimestampsRegionImpl
          Timestamp cache region for clustered environments.
 class TimestampsRegionImpl
          Defines the behavior of the timestamps cache region for Infinispan.
 

Uses of Region in org.hibernate.cache.spi
 

Subinterfaces of Region in org.hibernate.cache.spi
 interface CollectionRegion
          Defines the contract for a cache region which will specifically be used to store collection data.
 interface EntityRegion
          Defines the contract for a cache region which will specifically be used to store entity data.
 interface GeneralDataRegion
          Contract for general-purpose cache regions.
 interface NaturalIdRegion
          Defines the contract for a cache region which will specifically be used to store naturalId data.
 interface QueryResultsRegion
          Defines the contract for a cache region which will specifically be used to store query results.
 interface TimestampsRegion
          Defines the contract for a cache region which will specifically be used to store entity "update timestamps".
 interface TransactionalDataRegion
          Defines contract for regions which hold transactionally-managed data.
 

Uses of Region in org.hibernate.engine.spi
 

Methods in org.hibernate.engine.spi that return Region
 Region CacheImplementor.getNaturalIdCacheRegion(String regionName)
          Get natural id cache region by its name.
 Region SessionFactoryImplementor.getNaturalIdCacheRegion(String regionName)
          Get a named naturalId cache region
 Region CacheImplementor.getSecondLevelCacheRegion(String regionName)
          Get second level cache region by its name.
 Region SessionFactoryImplementor.getSecondLevelCacheRegion(String regionName)
          Get a named second-level cache region
 

Methods in org.hibernate.engine.spi that return types with arguments of type Region
 Map<String,Region> CacheImplementor.getAllSecondLevelCacheRegions()
          Get all cache regions, including query cache.
 

Methods in org.hibernate.engine.spi with parameters of type Region
 void CacheImplementor.addCacheRegion(String name, Region region)
          Add Region to this Cache scope.
 

Uses of Region in org.hibernate.internal
 

Methods in org.hibernate.internal that return Region
 Region CacheImpl.getNaturalIdCacheRegion(String regionName)
           
 Region SessionFactoryImpl.getNaturalIdCacheRegion(String regionName)
           
 Region CacheImpl.getSecondLevelCacheRegion(String regionName)
           
 Region SessionFactoryImpl.getSecondLevelCacheRegion(String regionName)
           
 

Methods in org.hibernate.internal that return types with arguments of type Region
 Map<String,Region> CacheImpl.getAllSecondLevelCacheRegions()
           
 

Methods in org.hibernate.internal with parameters of type Region
 void CacheImpl.addCacheRegion(String name, Region region)
           
 



Copyright © 2001-2013 Red Hat, Inc. All Rights Reserved.