from hibernate-validator-5.0.1.Final/engine/target/generated-sources/jaxb/org/hibernate/validator/internal/xml/GetterType.java
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2013.05.13 at 02:21:33 AM CEST
//
package org.hibernate.validator.internal.xml;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* <p>Java class for getterType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="getterType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="valid" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="convert-group" type="{http://jboss.org/xml/ns/javax/validation/mapping}groupConversionType" maxOccurs="unbounded" minOccurs="0"/>
* <element name="constraint" type="{http://jboss.org/xml/ns/javax/validation/mapping}constraintType" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="ignore-annotations" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "getterType", propOrder = {
"valid",
"convertGroup",
"constraint"
})
public class GetterType {
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protectedString valid;
@XmlElement(name = "convert-group")
protected List<GroupConversionType> convertGroup;
protected List<ConstraintType> constraint;
@XmlAttribute(name = "name", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protectedString name;
@XmlAttribute(name = "ignore-annotations")
protectedBoolean ignoreAnnotations;
/**
* Gets the value of the valid property.
*
* @return
* possible object is
* {@link String }
*
*/
publicString getValid() {
return valid;
}
/**
* Sets the value of the valid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValid(String value) {
this.valid = value;
}
/**
* Gets the value of the convertGroup property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the convertGroup property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getConvertGroup().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link GroupConversionType }
*
*
*/
public List<GroupConversionType> getConvertGroup() {
if (convertGroup == null) {
convertGroup = new ArrayList<GroupConversionType>();
}
returnthis.convertGroup;
}
/**
* Gets the value of the constraint property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the constraint property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getConstraint().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ConstraintType }
*
*
*/
public List<ConstraintType> getConstraint() {
if (constraint == null) {
constraint = new ArrayList<ConstraintType>();
}
returnthis.constraint;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
publicString getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the ignoreAnnotations property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
publicBoolean isIgnoreAnnotations() {
return ignoreAnnotations;
}
/**
* Sets the value of the ignoreAnnotations property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIgnoreAnnotations(Boolean value) {
this.ignoreAnnotations = value;
}
}
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
from hibernate-validator-5.0.1.Final/engine/target/generated-sources/jaxb/org/hibernate/validator/internal/xml/GetterType.java