Package org.hibernate.boot.jaxb.mapping
Class JaxbConverterRegistration
- java.lang.Object
-
- org.hibernate.boot.jaxb.mapping.JaxbConverterRegistration
-
- All Implemented Interfaces:
Serializable
public class JaxbConverterRegistration extends Object implements Serializable
See @ConverterRegistrationJava class for converter-registration complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="converter-registration"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="converter" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="class" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="auto-apply" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" /> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JaxbConverterRegistration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getClazz()
Gets the value of the clazz property.String
getConverter()
Gets the value of the converter property.boolean
isAutoApply()
Gets the value of the autoApply property.void
setAutoApply(Boolean value)
Sets the value of the autoApply property.void
setClazz(String value)
Sets the value of the clazz property.void
setConverter(String value)
Sets the value of the converter property.
-
-
-
Method Detail
-
getConverter
public String getConverter()
Gets the value of the converter property.- Returns:
- possible object is
String
-
setConverter
public void setConverter(String value)
Sets the value of the converter property.- Parameters:
value
- allowed object isString
-
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 isString
-
isAutoApply
public boolean isAutoApply()
Gets the value of the autoApply property.- Returns:
- possible object is
Boolean
-
-