Package org.hibernate.cache.cfg.spi
Interface DomainDataRegionConfig
-
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 java.util.List<CollectionDataCachingConfig>
getCollectionCaching()
Retrieve the list of all collection data to be stored in this regionjava.util.List<EntityDataCachingConfig>
getEntityCaching()
Retrieve the list of all entity to be stored in this regionjava.util.List<NaturalIdDataCachingConfig>
getNaturalIdCaching()
Retrieve the list of all natural-id data to be stored in this regionjava.lang.String
getRegionName()
Retrieve the unqualified name of this region.
-
-
-
Method Detail
-
getRegionName
java.lang.String getRegionName()
Retrieve the unqualified name of this region.
-
getEntityCaching
java.util.List<EntityDataCachingConfig> getEntityCaching()
Retrieve the list of all entity to be stored in this region
-
getNaturalIdCaching
java.util.List<NaturalIdDataCachingConfig> getNaturalIdCaching()
Retrieve the list of all natural-id data to be stored in this region
-
getCollectionCaching
java.util.List<CollectionDataCachingConfig> getCollectionCaching()
Retrieve the list of all collection data to be stored in this region
-
-