Package org.hibernate.boot.jaxb.hbm.spi
Class JaxbHbmCacheType
- java.lang.Object
-
- org.hibernate.boot.jaxb.hbm.spi.JaxbHbmCacheType
-
- All Implemented Interfaces:
Serializable
public class JaxbHbmCacheType extends Object implements Serializable
Java class for CacheType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CacheType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="include" type="{http://www.hibernate.org/xsd/orm/hbm}CacheInclusionEnum" default="all" /> <attribute name="region" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="usage" use="required" type="{http://www.hibernate.org/xsd/orm/hbm}CacheUsageEnum" /> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected JaxbHbmCacheInclusionEnum
include
protected String
region
protected AccessType
usage
-
Constructor Summary
Constructors Constructor Description JaxbHbmCacheType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JaxbHbmCacheInclusionEnum
getInclude()
Gets the value of the include property.String
getRegion()
Gets the value of the region property.AccessType
getUsage()
Gets the value of the usage property.void
setInclude(JaxbHbmCacheInclusionEnum value)
Sets the value of the include property.void
setRegion(String value)
Sets the value of the region property.void
setUsage(AccessType value)
Sets the value of the usage property.
-
-
-
Field Detail
-
include
protected JaxbHbmCacheInclusionEnum include
-
region
protected String region
-
usage
protected AccessType usage
-
-
Method Detail
-
getInclude
public JaxbHbmCacheInclusionEnum getInclude()
Gets the value of the include property.- Returns:
- possible object is
JaxbHbmCacheInclusionEnum
-
setInclude
public void setInclude(JaxbHbmCacheInclusionEnum value)
Sets the value of the include property.- Parameters:
value
- allowed object isJaxbHbmCacheInclusionEnum
-
getRegion
public String getRegion()
Gets the value of the region property.- Returns:
- possible object is
String
-
setRegion
public void setRegion(String value)
Sets the value of the region property.- Parameters:
value
- allowed object isString
-
getUsage
public AccessType getUsage()
Gets the value of the usage property.- Returns:
- possible object is
String
-
setUsage
public void setUsage(AccessType value)
Sets the value of the usage property.- Parameters:
value
- allowed object isString
-
-