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 bySessionFactoryOptions.getCacheRegionPrefix()
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<CollectionDataCachingConfig>
getCollectionCaching()
Retrieve the list of all collection data to be stored in this regionList<EntityDataCachingConfig>
getEntityCaching()
Retrieve the list of all entity data to be stored in this regionList<NaturalIdDataCachingConfig>
getNaturalIdCaching()
Retrieve the list of all natural-id data to be stored in this regionString
getRegionName()
Retrieve the unqualified name of this region.
-
-
-
Method Detail
-
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
-
-