// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // 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: 2010.08.05 at 05:55:36 PM MDT // package com.gallatinsystems.survey.domain.xml; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * <p> * Java class for anonymous complex type. * <p> * The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="minVal" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" /> * <attribute name="allowDecimal" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" /> * <attribute name="validationType" use="required" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" /> * <attribute name="signed" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" /> * <attribute name="maxLength" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" /> * <attribute name="maxVal" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" /> * </restriction> * </complexContent> * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "validationRule") public class ValidationRule { @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NMTOKEN") protected String minVal; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NMTOKEN") protected String allowDecimal; @XmlAttribute(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NMTOKEN") protected String validationType; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NMTOKEN") protected String signed; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NMTOKEN") protected String maxLength; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NMTOKEN") protected String maxVal; /** * Gets the value of the minVal property. * * @return possible object is {@link String } */ public String getMinVal() { return minVal; } /** * Sets the value of the minVal property. * * @param value allowed object is {@link String } */ public void setMinVal(String value) { this.minVal = value; } /** * Gets the value of the allowDecimal property. * * @return possible object is {@link String } */ public String getAllowDecimal() { return allowDecimal; } /** * Sets the value of the allowDecimal property. * * @param value allowed object is {@link String } */ public void setAllowDecimal(String value) { this.allowDecimal = value; } /** * Gets the value of the validationType property. * * @return possible object is {@link String } */ public String getValidationType() { return validationType; } /** * Sets the value of the validationType property. * * @param value allowed object is {@link String } */ public void setValidationType(String value) { this.validationType = value; } /** * Gets the value of the signed property. * * @return possible object is {@link String } */ public String getSigned() { return signed; } /** * Sets the value of the signed property. * * @param value allowed object is {@link String } */ public void setSigned(String value) { this.signed = value; } /** * Gets the value of the maxLength property. * * @return possible object is {@link String } */ public String getMaxLength() { return maxLength; } /** * Sets the value of the maxLength property. * * @param value allowed object is {@link String } */ public void setMaxLength(String value) { this.maxLength = value; } /** * Gets the value of the maxVal property. * * @return possible object is {@link String } */ public String getMaxVal() { return maxVal; } /** * Sets the value of the maxVal property. * * @param value allowed object is {@link String } */ public void setMaxVal(String value) { this.maxVal = value; } }