Package org.hibernate.cache.cfg.spi
Interface DomainDataCachingConfig
-
- All Known Subinterfaces:
CollectionDataCachingConfig
,EntityDataCachingConfig
,NaturalIdDataCachingConfig
- All Known Implementing Classes:
AbstractDomainDataCachingConfig
,CollectionDataCachingConfigImpl
,EntityDataCachingConfigImpl
,NaturalIdDataCachingConfigImpl
public interface DomainDataCachingConfig
Configuration for a specific type of data to be stored in the region
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AccessType
getAccessType()
The requested AccessTypeNavigableRole
getNavigableRole()
TheNavigableRole
of the thing to be cachedboolean
isMutable()
Is the data marked as being mutable?boolean
isVersioned()
Is the data to be cached considered versioned?
-
-
-
Method Detail
-
getAccessType
AccessType getAccessType()
The requested AccessType
-
isMutable
boolean isMutable()
Is the data marked as being mutable?
-
isVersioned
boolean isVersioned()
Is the data to be cached considered versioned?
-
getNavigableRole
NavigableRole getNavigableRole()
TheNavigableRole
of the thing to be cached
-
-