// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.2-b01-fcs // 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.03 at 06:49:54 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.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for ClientG11NOptionConfig complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ClientG11NOptionConfig"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="preferred-encoding" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="preferred-locale" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="preferred-global-id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ClientG11NOptionConfig", propOrder = { "preferredEncoding", "preferredLocale", "preferredGlobalId" }) public class ClientG11NOptionConfig { @XmlElement(name = "preferred-encoding") protected String preferredEncoding; @XmlElement(name = "preferred-locale") protected String preferredLocale; @XmlElement(name = "preferred-global-id") protected String preferredGlobalId; /** * Gets the value of the preferredEncoding property. * * @return * possible object is * {@link String } * */ public String getPreferredEncoding() { return preferredEncoding; } /** * Sets the value of the preferredEncoding property. * * @param value * allowed object is * {@link String } * */ public void setPreferredEncoding(String value) { this.preferredEncoding = value; } /** * Gets the value of the preferredLocale property. * * @return * possible object is * {@link String } * */ public String getPreferredLocale() { return preferredLocale; } /** * Sets the value of the preferredLocale property. * * @param value * allowed object is * {@link String } * */ public void setPreferredLocale(String value) { this.preferredLocale = value; } /** * Gets the value of the preferredGlobalId property. * * @return * possible object is * {@link String } * */ public String getPreferredGlobalId() { return preferredGlobalId; } /** * Sets the value of the preferredGlobalId property. * * @param value * allowed object is * {@link String } * */ public void setPreferredGlobalId(String value) { this.preferredGlobalId = value; } }