hi
yes
locate in 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
//
/**
* Sets the value of the ignoreAnnotations property.
*
* @param value
* allowed object is
* {@link Boolean }
*/
public void setIgnoreAnnotations(Boolean value)
{
this.ignoreAnnotations = value;
}
}
thanks
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
hi
yes
locate in 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;
/**
anyType">
string" minOccurs="0"/>
groupConversionType" maxOccurs="unbounded" minOccurs="0"/>
constraintType" maxOccurs="unbounded" minOccurs="0"/>
string" />
boolean" />
*/
{ "valid", "convertGroup", "constraint" }@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "getterType", propOrder =
)
public class GetterType {
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String valid;
@XmlElement(name = "convert-group")
protected List<GroupConversionType> convertGroup;
protected List<ConstraintType> constraint;
@XmlAttribute(name = "name", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String name;
@XmlAttribute(name = "ignore-annotations")
protected Boolean ignoreAnnotations;
/**
*
*/
public String getValid() { return valid; }
/**
* Sets the value of the valid property.
*
* @param value
* allowed object is
* {@link String }
*/
{ this.valid = value; }public void setValid(String value)
/**
*/
public List<GroupConversionType> getConvertGroup()
/**
*/
public List<ConstraintType> getConstraint()
/**
*
*/
public String getName() { return name; }
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*/
{ this.name = value; }public void setName(String value)
/**
*
*/
public Boolean isIgnoreAnnotations() { return ignoreAnnotations; }
/**
* Sets the value of the ignoreAnnotations property.
*
* @param value
* allowed object is
* {@link Boolean }
*/
{ this.ignoreAnnotations = value; }public void setIgnoreAnnotations(Boolean value)
}
thanks