Package org.hibernate.cache.cfg.spi
Interface DomainDataCachingConfig
-
- All Known Subinterfaces:
CollectionDataCachingConfig,EntityDataCachingConfig,NaturalIdDataCachingConfig
public interface DomainDataCachingConfigConfiguration 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 AccessTypegetAccessType()The requested AccessTypeNavigableRolegetNavigableRole()TheNavigableRoleof the thing to be cachedbooleanisMutable()Is the data marked as being mutable?booleanisVersioned()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()
TheNavigableRoleof the thing to be cached
-
-