Class JaxbConverterImpl

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

public class JaxbConverterImpl extends Object implements Serializable
@Target({TYPE}) @Retention(RUNTIME) public @interface Converter { boolean autoApply() default false; } <p>Java class for converter complex type</p>. <p>The following schema fragment specifies the expected content contained within this class.</p> <pre>{@code <complexType name="converter"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </sequence> <attribute name="class" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="auto-apply" type="{http://www.w3.org/2001/XMLSchema}boolean" /> </restriction> </complexContent> </complexType> }</pre>
See Also:
  • Field Details

    • description

      protected String description
    • clazz

      protected String clazz
    • autoApply

      protected Boolean autoApply
  • Constructor Details

    • JaxbConverterImpl

      public JaxbConverterImpl()
  • Method Details

    • getDescription

      public String getDescription()
      Gets the value of the description property.
      Returns:
      possible object is String
    • setDescription

      public void setDescription(String value)
      Sets the value of the description property.
      Parameters:
      value - allowed object is String
    • getClazz

      public String getClazz()
      Gets the value of the clazz property.
      Returns:
      possible object is String
    • setClazz

      public void setClazz(String value)
      Sets the value of the clazz property.
      Parameters:
      value - allowed object is String
    • isAutoApply

      public Boolean isAutoApply()
      Gets the value of the autoApply property.
      Returns:
      possible object is Boolean
    • setAutoApply

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