Class JaxbCachingImpl

java.lang.Object
org.hibernate.boot.jaxb.mapping.spi.JaxbCachingImpl
All Implemented Interfaces:
Serializable

public class JaxbCachingImpl extends Object implements Serializable
See @org.hibernate.annotations.Cache Used to specify Hibernate-specific extra control over the caching of entity and collection state. <p>Java class for caching complex type</p>. <p>The following schema fragment specifies the expected content contained within this class.</p> <pre>{@code <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> }</pre>
See Also:
  • Field Details

    • region

      protected String region
    • access

      protected AccessType access
    • includeLazy

      protected Boolean includeLazy
  • Constructor Details

    • JaxbCachingImpl

      public JaxbCachingImpl()
  • Method Details

    • 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 is String
    • getAccess

      public AccessType getAccess()
      Gets the value of the access property.
      Returns:
      possible object is String
    • setAccess

      public void setAccess(AccessType value)
      Sets the value of the access property.
      Parameters:
      value - allowed object is String
    • isIncludeLazy

      public boolean isIncludeLazy()
      Gets the value of the includeLazy property.
      Returns:
      possible object is Boolean
    • setIncludeLazy

      public void setIncludeLazy(Boolean value)
      Sets the value of the includeLazy property.
      Parameters:
      value - allowed object is Boolean