// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 // 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: 2011.08.11 at 04:38:10 AM PDT // package org.ebayopensource.turmeric.common.config; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; /** * <p>Java class for RestOptionType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="RestOptionType"> * <simpleContent> * <extension base="<http://www.w3.org/2001/XMLSchema>boolean"> * <attribute name="max-url-byte-length" type="{http://www.w3.org/2001/XMLSchema}int" /> * </extension> * </simpleContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RestOptionType", propOrder = { "value" }) public class RestOptionType { @XmlValue protected boolean value; @XmlAttribute(name = "max-url-byte-length") protected Integer maxUrlByteLength; /** * Gets the value of the value property. * */ public boolean isValue() { return value; } /** * Sets the value of the value property. * */ public void setValue(boolean value) { this.value = value; } /** * Gets the value of the maxUrlByteLength property. * * @return * possible object is * {@link Integer } * */ public Integer getMaxUrlByteLength() { return maxUrlByteLength; } /** * Sets the value of the maxUrlByteLength property. * * @param value * allowed object is * {@link Integer } * */ public void setMaxUrlByteLength(Integer value) { this.maxUrlByteLength = value; } }