// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.06.20 at 02:39:04 PM PDT // package com.bn.cloud.pm.data.vo.catalog.retl; 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.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

Java class for RetailerCountry complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="RetailerCountry">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="country" type="{}Country" minOccurs="0"/>
 *         <element name="defaultCurrency" type="{}SimpleCurrency" minOccurs="0"/>
 *         <element name="opticsApplied" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="languages">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="entry" maxOccurs="unbounded" minOccurs="0">
 *                     <complexType>
 *                       <complexContent>
 *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                           <sequence>
 *                             <element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                             <element name="value" type="{}itemState" minOccurs="0"/>
 *                           </sequence>
 *                         </restriction>
 *                       </complexContent>
 *                     </complexType>
 *                   </element>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="state" type="{}itemState" minOccurs="0"/>
 *         <element name="supportedCurrencies">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="entry" maxOccurs="unbounded" minOccurs="0">
 *                     <complexType>
 *                       <complexContent>
 *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                           <sequence>
 *                             <element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                             <element name="value" type="{}itemState" minOccurs="0"/>
 *                           </sequence>
 *                         </restriction>
 *                       </complexContent>
 *                     </complexType>
 *                   </element>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="retailerCountries" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="retailerCountryInformation" type="{}RetailerCountryInfo" maxOccurs="unbounded" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="supportGiftCard" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RetailerCountry", propOrder = { "country", "defaultCurrency", "opticsApplied", "languages", "state", "supportedCurrencies", "retailerCountries", "supportGiftCard" }) public class RetailerCountry { protected Country country; protected SimpleCurrency defaultCurrency; protected boolean opticsApplied; @XmlElement(required = true) protected Languages languages; protected ItemState state; @XmlElement(required = true) protected SupportedCurrencies supportedCurrencies; protected RetailerCountries retailerCountries; protected boolean supportGiftCard; /** * Gets the value of the country property. * * @return * possible object is * {@link com.bn.cloud.pm.data.vo.catalog.retl.Country } * */ public Country getCountry() { return country; } /** * Sets the value of the country property. * * @param value * allowed object is * {@link com.bn.cloud.pm.data.vo.catalog.retl.Country } * */ public void setCountry(Country value) { this.country = value; } /** * Gets the value of the defaultCurrency property. * * @return * possible object is * {@link SimpleCurrency } * */ public SimpleCurrency getDefaultCurrency() { return defaultCurrency; } /** * Sets the value of the defaultCurrency property. * * @param value * allowed object is * {@link SimpleCurrency } * */ public void setDefaultCurrency(SimpleCurrency value) { this.defaultCurrency = value; } /** * Gets the value of the opticsApplied property. * */ public boolean isOpticsApplied() { return opticsApplied; } /** * Sets the value of the opticsApplied property. * */ public void setOpticsApplied(boolean value) { this.opticsApplied = value; } /** * Gets the value of the languages property. * * @return * possible object is * {@link com.bn.cloud.pm.data.vo.catalog.retl.RetailerCountry.Languages } * */ public Languages getLanguages() { return languages; } /** * Sets the value of the languages property. * * @param value * allowed object is * {@link com.bn.cloud.pm.data.vo.catalog.retl.RetailerCountry.Languages } * */ public void setLanguages(Languages value) { this.languages = value; } /** * Gets the value of the state property. * * @return * possible object is * {@link com.bn.cloud.pm.data.vo.catalog.retl.ItemState } * */ public ItemState getState() { return state; } /** * Sets the value of the state property. * * @param value * allowed object is * {@link com.bn.cloud.pm.data.vo.catalog.retl.ItemState } * */ public void setState(ItemState value) { this.state = value; } /** * Gets the value of the supportedCurrencies property. * * @return * possible object is * {@link com.bn.cloud.pm.data.vo.catalog.retl.RetailerCountry.SupportedCurrencies } * */ public SupportedCurrencies getSupportedCurrencies() { return supportedCurrencies; } /** * Sets the value of the supportedCurrencies property. * * @param value * allowed object is * {@link com.bn.cloud.pm.data.vo.catalog.retl.RetailerCountry.SupportedCurrencies } * */ public void setSupportedCurrencies(SupportedCurrencies value) { this.supportedCurrencies = value; } /** * Gets the value of the retailerCountries property. * * @return * possible object is * {@link com.bn.cloud.pm.data.vo.catalog.retl.RetailerCountry.RetailerCountries } * */ public RetailerCountries getRetailerCountries() { return retailerCountries; } /** * Sets the value of the retailerCountries property. * * @param value * allowed object is * {@link com.bn.cloud.pm.data.vo.catalog.retl.RetailerCountry.RetailerCountries } * */ public void setRetailerCountries(RetailerCountries value) { this.retailerCountries = value; } /** * Gets the value of the supportGiftCard property. * */ public boolean isSupportGiftCard() { return supportGiftCard; } /** * Sets the value of the supportGiftCard property. * */ public void setSupportGiftCard(boolean value) { this.supportGiftCard = value; } /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <element name="entry" maxOccurs="unbounded" minOccurs="0">
     *           <complexType>
     *             <complexContent>
     *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                 <sequence>
     *                   <element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *                   <element name="value" type="{}itemState" minOccurs="0"/>
     *                 </sequence>
     *               </restriction>
     *             </complexContent>
     *           </complexType>
     *         </element>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "entry" }) public static class Languages { protected List entry; /** * Gets the value of the entry property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the entry property. * *

* For example, to add a new item, do as follows: *

         *    getEntry().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link com.bn.cloud.pm.data.vo.catalog.retl.RetailerCountry.Languages.Entry } * * */ public List getEntry() { if (entry == null) { entry = new ArrayList(); } return this.entry; } /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

         * <complexType>
         *   <complexContent>
         *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
         *       <sequence>
         *         <element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         *         <element name="value" type="{}itemState" minOccurs="0"/>
         *       </sequence>
         *     </restriction>
         *   </complexContent>
         * </complexType>
         * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "key", "value" }) public static class Entry { protected String key; protected ItemState value; /** * Gets the value of the key property. * * @return * possible object is * {@link String } * */ public String getKey() { return key; } /** * Sets the value of the key property. * * @param value * allowed object is * {@link String } * */ public void setKey(String value) { this.key = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link com.bn.cloud.pm.data.vo.catalog.retl.ItemState } * */ public ItemState getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link com.bn.cloud.pm.data.vo.catalog.retl.ItemState } * */ public void setValue(ItemState value) { this.value = value; } } } /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <element name="retailerCountryInformation" type="{}RetailerCountryInfo" maxOccurs="unbounded" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "retailerCountryInformation" }) public static class RetailerCountries { protected List retailerCountryInformation; /** * Gets the value of the retailerCountryInformation property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the retailerCountryInformation property. * *

* For example, to add a new item, do as follows: *

         *    getRetailerCountryInformation().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link RetailerCountryInfo } * * */ public List getRetailerCountryInformation() { if (retailerCountryInformation == null) { retailerCountryInformation = new ArrayList(); } return this.retailerCountryInformation; } } /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <element name="entry" maxOccurs="unbounded" minOccurs="0">
     *           <complexType>
     *             <complexContent>
     *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                 <sequence>
     *                   <element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *                   <element name="value" type="{}itemState" minOccurs="0"/>
     *                 </sequence>
     *               </restriction>
     *             </complexContent>
     *           </complexType>
     *         </element>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "entry" }) public static class SupportedCurrencies { protected List entry; /** * Gets the value of the entry property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the entry property. * *

* For example, to add a new item, do as follows: *

         *    getEntry().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link com.bn.cloud.pm.data.vo.catalog.retl.RetailerCountry.SupportedCurrencies.Entry } * * */ public List getEntry() { if (entry == null) { entry = new ArrayList(); } return this.entry; } /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

         * <complexType>
         *   <complexContent>
         *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
         *       <sequence>
         *         <element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         *         <element name="value" type="{}itemState" minOccurs="0"/>
         *       </sequence>
         *     </restriction>
         *   </complexContent>
         * </complexType>
         * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "key", "value" }) public static class Entry { protected String key; protected ItemState value; /** * Gets the value of the key property. * * @return * possible object is * {@link String } * */ public String getKey() { return key; } /** * Sets the value of the key property. * * @param value * allowed object is * {@link String } * */ public void setKey(String value) { this.key = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link com.bn.cloud.pm.data.vo.catalog.retl.ItemState } * */ public ItemState getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link com.bn.cloud.pm.data.vo.catalog.retl.ItemState } * */ public void setValue(ItemState value) { this.value = value; } } } }