Package org.hibernate.cache.cfg.spi
Interface DomainDataRegionConfig
- All Known Implementing Classes:
DomainDataRegionConfigImpl
public interface DomainDataRegionConfig
Configuration for a named region for caching domain data.
A region's name is "unqualified"; i.e. it is not prefixed by
SessionFactoryOptions.getCacheRegionPrefix()
.-
Method Summary
Modifier and TypeMethodDescriptionRetrieve the list of all collection data to be stored in this regionRetrieve the list of all entity data to be stored in this regionRetrieve the list of all natural-id data to be stored in this regionRetrieve the unqualified name of this region.
-
Method Details
-
getRegionName
String getRegionName()Retrieve the unqualified name of this region. -
getEntityCaching
List<EntityDataCachingConfig> getEntityCaching()Retrieve the list of all entity data to be stored in this region -
getNaturalIdCaching
List<NaturalIdDataCachingConfig> getNaturalIdCaching()Retrieve the list of all natural-id data to be stored in this region -
getCollectionCaching
List<CollectionDataCachingConfig> getCollectionCaching()Retrieve the list of all collection data to be stored in this region
-