Uses of Interface
org.hibernate.cache.spi.access.EntityDataAccess
-
Packages that use EntityDataAccess Package Description org.hibernate.action.internal The various concrete action implementations.org.hibernate.cache.internal Internal implementations and support for second-level caching.org.hibernate.cache.jcache.internal org.hibernate.cache.spi Defines the integration aspect of Hibernate's second-level caching, allowing a "caching backend" to be plugged in as a cache provider.org.hibernate.cache.spi.support This package provides a framework intended to reduce the work needed to implement a caching provider.org.hibernate.persister.entity This package abstracts persistence mechanisms for entities.org.hibernate.persister.internal Built-in implementation of the SPI for integrating entity and collection persisters.org.hibernate.persister.spi An SPI for integrating custom entity and collection persisters. -
-
Uses of EntityDataAccess in org.hibernate.action.internal
Methods in org.hibernate.action.internal with parameters of type EntityDataAccess Modifier and Type Method Description protected boolean
EntityInsertAction. cacheAfterInsert(EntityDataAccess cache, Object ck)
protected void
EntityUpdateAction. cacheAfterUpdate(EntityDataAccess cache, Object ck, SharedSessionContractImplementor session)
-
Uses of EntityDataAccess in org.hibernate.cache.internal
Methods in org.hibernate.cache.internal that return EntityDataAccess Modifier and Type Method Description EntityDataAccess
DisabledCaching. getEntityRegionAccess(NavigableRole rootEntityName)
Deprecated.EntityDataAccess
EnabledCaching. getEntityRegionAccess(NavigableRole rootEntityName)
Deprecated. -
Uses of EntityDataAccess in org.hibernate.cache.jcache.internal
Methods in org.hibernate.cache.jcache.internal that return EntityDataAccess Modifier and Type Method Description protected EntityDataAccess
JCacheDomainDataRegionImpl. generateTransactionalEntityDataAccess(EntityDataCachingConfig entityAccessConfig)
-
Uses of EntityDataAccess in org.hibernate.cache.spi
Methods in org.hibernate.cache.spi that return EntityDataAccess Modifier and Type Method Description EntityDataAccess
DomainDataRegion. getEntityDataAccess(NavigableRole rootEntityRole)
Build aEntityDataAccess
instance representing access to destructured entity data stored in this cache region.@Remove EntityDataAccess
CacheImplementor. getEntityRegionAccess(NavigableRole rootEntityName)
Find the cache data access strategy for an entity. -
Uses of EntityDataAccess in org.hibernate.cache.spi.support
Classes in org.hibernate.cache.spi.support that implement EntityDataAccess Modifier and Type Class Description class
AbstractEntityDataAccess
class
EntityNonStrictReadWriteAccess
Standard support forEntityDataAccess
using theAccessType.NONSTRICT_READ_WRITE
access type.class
EntityReadOnlyAccess
Standard support forEntityDataAccess
using theAccessType.READ_ONLY
access type.class
EntityReadWriteAccess
Standard support forEntityDataAccess
using theAccessType.READ_WRITE
access type.class
EntityTransactionalAccess
Methods in org.hibernate.cache.spi.support with parameters of type EntityDataAccess Modifier and Type Method Description protected void
AbstractDomainDataRegion. releaseDataAccess(EntityDataAccess cacheAccess)
-
Uses of EntityDataAccess in org.hibernate.persister.entity
Methods in org.hibernate.persister.entity that return EntityDataAccess Modifier and Type Method Description EntityDataAccess
AbstractEntityPersister. getCacheAccessStrategy()
EntityDataAccess
EntityPersister. getCacheAccessStrategy()
Get the cache (optional operation) -
Uses of EntityDataAccess in org.hibernate.persister.internal
Methods in org.hibernate.persister.internal with parameters of type EntityDataAccess Modifier and Type Method Description EntityPersister
PersisterFactoryImpl. createEntityPersister(PersistentClass entityBinding, EntityDataAccess entityCacheAccessStrategy, NaturalIdDataAccess naturalIdCacheAccessStrategy, RuntimeModelCreationContext creationContext)
EntityPersister
PersisterFactoryImpl. createEntityPersister(PersistentClass entityBinding, EntityDataAccess entityCacheAccessStrategy, NaturalIdDataAccess naturalIdCacheAccessStrategy, PersisterCreationContext creationContext)
-
Uses of EntityDataAccess in org.hibernate.persister.spi
Methods in org.hibernate.persister.spi with parameters of type EntityDataAccess Modifier and Type Method Description default EntityPersister
PersisterFactory. createEntityPersister(PersistentClass entityBinding, EntityDataAccess entityCacheAccessStrategy, NaturalIdDataAccess naturalIdCacheAccessStrategy, RuntimeModelCreationContext creationContext)
Create an entity persister instance.EntityPersister
PersisterFactory. createEntityPersister(PersistentClass entityBinding, EntityDataAccess entityCacheAccessStrategy, NaturalIdDataAccess naturalIdCacheAccessStrategy, PersisterCreationContext creationContext)
-