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 Object implements Region
-
-
Constructor Summary
Constructors Constructor Description AbstractRegion(String name, RegionFactory regionFactory)
Constructs anAbstractRegion
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
Retrieve the unqualified name of this region.RegionFactory
getRegionFactory()
The RegionFactory that generated this Region
-
-
-
Constructor Detail
-
AbstractRegion
public AbstractRegion(String name, RegionFactory regionFactory)
Constructs anAbstractRegion
.- Parameters:
name
- - the unqualified region nameregionFactory
- - the region factory
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:Region
Retrieve the unqualified name of this region.
-
getRegionFactory
public RegionFactory getRegionFactory()
Description copied from interface:Region
The RegionFactory that generated this Region- Specified by:
getRegionFactory
in interfaceRegion
-
-