Uses of Interface
org.hibernate.cache.access.EntityRegionAccessStrategy

Packages that use EntityRegionAccessStrategy
org.hibernate.cache This package defines APIs/SPIs and implementations for the Hibernate second-level cache. 
org.hibernate.cache.impl.bridge   
org.hibernate.cache.infinispan.entity   
org.hibernate.cache.jbc.entity   
org.hibernate.persister A persister defines a mapping strategy for a collection or entity. 
org.hibernate.persister.entity This package abstracts persistence mechanisms for entities, and defines the Hibernate runtime metamodel. 
 

Uses of EntityRegionAccessStrategy in org.hibernate.cache
 

Methods in org.hibernate.cache that return EntityRegionAccessStrategy
 EntityRegionAccessStrategy EntityRegion.buildAccessStrategy(AccessType accessType)
          Build an access strategy for the requested access type.
 

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

Classes in org.hibernate.cache.impl.bridge that implement EntityRegionAccessStrategy
 class EntityAccessStrategyAdapter
          Adapter specifically bridging EntityRegionAccessStrategy to CacheConcurrencyStrategy.
 

Methods in org.hibernate.cache.impl.bridge that return EntityRegionAccessStrategy
 EntityRegionAccessStrategy EntityRegionAdapter.buildAccessStrategy(AccessType accessType)
           
 

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

Methods in org.hibernate.cache.infinispan.entity that return EntityRegionAccessStrategy
 EntityRegionAccessStrategy EntityRegionImpl.buildAccessStrategy(AccessType accessType)
           
 

Uses of EntityRegionAccessStrategy in org.hibernate.cache.jbc.entity
 

Classes in org.hibernate.cache.jbc.entity that implement EntityRegionAccessStrategy
 class OptimisticReadOnlyAccess
          This defines the strategy for read-only access to enity data in an optimistic-locking JBossCache using its 2.x APIs

The read-only access to a JBossCache really is still transactional, just with the extra semantic or guarantee that we will not update data.

 class OptimisticTransactionalAccess
          Defines the strategy for transactional access to entity data in an optimistic-locking JBoss Cache using its 2.x APIs
 class ReadOnlyAccess
          This defines the strategy for transactional access to enity data in JBossCache using its 2.x APIs

read-only access to a JBossCache really is still transactional, just with the extra semantic or guarentee that we will not update data.

 class TransactionalAccess
          Defines the strategy for transactional access to entity data in a pessimistic-locking JBossCache using its 2.x APIs
 

Methods in org.hibernate.cache.jbc.entity that return EntityRegionAccessStrategy
 EntityRegionAccessStrategy EntityRegionImpl.buildAccessStrategy(AccessType accessType)
          Build an access strategy for the requested access type.
 

Uses of EntityRegionAccessStrategy in org.hibernate.persister
 

Methods in org.hibernate.persister with parameters of type EntityRegionAccessStrategy
static EntityPersister PersisterFactory.createClassPersister(PersistentClass model, EntityRegionAccessStrategy cacheAccessStrategy, SessionFactoryImplementor factory, Mapping cfg)
           
 

Uses of EntityRegionAccessStrategy in org.hibernate.persister.entity
 

Methods in org.hibernate.persister.entity that return EntityRegionAccessStrategy
 EntityRegionAccessStrategy EntityPersister.getCacheAccessStrategy()
          Get the cache (optional operation)
 EntityRegionAccessStrategy AbstractEntityPersister.getCacheAccessStrategy()
           
 

Constructors in org.hibernate.persister.entity with parameters of type EntityRegionAccessStrategy
AbstractEntityPersister(PersistentClass persistentClass, EntityRegionAccessStrategy cacheAccessStrategy, SessionFactoryImplementor factory)
           
JoinedSubclassEntityPersister(PersistentClass persistentClass, EntityRegionAccessStrategy cacheAccessStrategy, SessionFactoryImplementor factory, Mapping mapping)
           
SingleTableEntityPersister(PersistentClass persistentClass, EntityRegionAccessStrategy cacheAccessStrategy, SessionFactoryImplementor factory, Mapping mapping)
           
UnionSubclassEntityPersister(PersistentClass persistentClass, EntityRegionAccessStrategy cacheAccessStrategy, SessionFactoryImplementor factory, Mapping mapping)
           
 



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