Class JaxbCachingImpl
java.lang.Object
org.hibernate.boot.jaxb.mapping.spi.JaxbCachingImpl
- All Implemented Interfaces:
Serializable
See @org.hibernate.annotations.Cache
Used to specify Hibernate-specific extra control over the caching
of entity and collection state.
Java class for caching complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="caching">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<attribute name="region" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="access" use="required" type="{http://www.hibernate.org/xsd/orm/mapping}cache-access-type" />
<attribute name="includeLazy" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
</restriction>
</complexContent>
</complexType>
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the access property.Gets the value of the region property.boolean
Gets the value of the includeLazy property.void
setAccess
(AccessType value) Sets the value of the access property.void
setIncludeLazy
(Boolean value) Sets the value of the includeLazy property.void
Sets the value of the region property.
-
Field Details
-
region
-
access
-
includeLazy
-
-
Constructor Details
-
JaxbCachingImpl
public JaxbCachingImpl()
-
-
Method Details
-
getRegion
Gets the value of the region property.- Returns:
- possible object is
String
-
setRegion
Sets the value of the region property.- Parameters:
value
- allowed object isString
-
getAccess
Gets the value of the access property.- Returns:
- possible object is
String
-
setAccess
Sets the value of the access property.- Parameters:
value
- allowed object isString
-
isIncludeLazy
public boolean isIncludeLazy()Gets the value of the includeLazy property.- Returns:
- possible object is
Boolean
-
setIncludeLazy
Sets the value of the includeLazy property.- Parameters:
value
- allowed object isBoolean
-