//
// 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.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 LocaleInfoConfig complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="LocaleInfoConfig">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* </sequence>
* <attribute name="language" use="required" type="{http://www.w3.org/2001/XMLSchema}token" />
* <attribute name="territory" use="required" type="{http://www.w3.org/2001/XMLSchema}token" />
* <attribute name="default" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* <attribute name="disabled" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LocaleInfoConfig")
public class LocaleInfoConfig {
@XmlAttribute(required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "token")
protected String language;
@XmlAttribute(required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "token")
protected String territory;
@XmlAttribute(name = "default")
protected Boolean _default;
@XmlAttribute
protected Boolean disabled;
/**
* Gets the value of the language property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLanguage() {
return language;
}
/**
* Sets the value of the language property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLanguage(String value) {
this.language = value;
}
/**
* Gets the value of the territory property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTerritory() {
return territory;
}
/**
* Sets the value of the territory property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTerritory(String value) {
this.territory = value;
}
/**
* Gets the value of the default property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isDefault() {
return _default;
}
/**
* Sets the value of the default property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setDefault(Boolean value) {
this._default = value;
}
/**
* Gets the value of the disabled property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isDisabled() {
return disabled;
}
/**
* Sets the value of the disabled property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setDisabled(Boolean value) {
this.disabled = value;
}
}