Package org.hibernate.cache.spi.support
Class AbstractRegion
- java.lang.Object
-
- org.hibernate.cache.spi.support.AbstractRegion
-
- All Implemented Interfaces:
Region
- Direct Known Subclasses:
AbstractDomainDataRegion,DirectAccessRegionTemplate
public abstract class AbstractRegion extends java.lang.Object implements Region
-
-
Constructor Summary
Constructors Constructor Description AbstractRegion(java.lang.String name, RegionFactory regionFactory)Constructs anAbstractRegion.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName()Retrieve the unqualified name of this region.RegionFactorygetRegionFactory()The RegionFactory that generated this Region
-
-
-
Constructor Detail
-
AbstractRegion
public AbstractRegion(java.lang.String name, RegionFactory regionFactory)Constructs anAbstractRegion.- Parameters:
name- - the unqualified region nameregionFactory- - the region factory
-
-
Method Detail
-
getName
public java.lang.String getName()
Description copied from interface:RegionRetrieve the unqualified name of this region.
-
getRegionFactory
public RegionFactory getRegionFactory()
Description copied from interface:RegionThe RegionFactory that generated this Region- Specified by:
getRegionFactoryin interfaceRegion
-
-