// // 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.XmlType; /** *

Java class for Retailer complex type. * *

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

 * <complexType name="Retailer">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="retailerGroup" type="{}RetailerGroup" minOccurs="0"/>
 *         <element name="supportedCurrencies" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="currency" type="{}SimpleCurrency" maxOccurs="unbounded" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="retailerCountries" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="retailerCountry" type="{}RetailerCountry" maxOccurs="unbounded" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="state" type="{}itemState" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Retailer", propOrder = { "code", "name", "description", "retailerGroup", "supportedCurrencies", "retailerCountries", "state" }) public class Retailer { protected String code; protected String name; protected String description; protected RetailerGroup retailerGroup; protected SupportedCurrencies supportedCurrencies; protected RetailerCountries retailerCountries; protected ItemState state; /** * Gets the value of the code property. * * @return * possible object is * {@link String } * */ public String getCode() { return code; } /** * Sets the value of the code property. * * @param value * allowed object is * {@link String } * */ public void setCode(String value) { this.code = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the retailerGroup property. * * @return * possible object is * {@link RetailerGroup } * */ public RetailerGroup getRetailerGroup() { return retailerGroup; } /** * Sets the value of the retailerGroup property. * * @param value * allowed object is * {@link RetailerGroup } * */ public void setRetailerGroup(RetailerGroup value) { this.retailerGroup = value; } /** * Gets the value of the supportedCurrencies property. * * @return * possible object is * {@link com.bn.cloud.pm.data.vo.catalog.retl.Retailer.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.Retailer.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.Retailer.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.Retailer.RetailerCountries } * */ public void setRetailerCountries(RetailerCountries value) { this.retailerCountries = 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; } /** *

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="retailerCountry" type="{}RetailerCountry" maxOccurs="unbounded" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "retailerCountry" }) public static class RetailerCountries { protected List retailerCountry; /** * Gets the value of the retailerCountry 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 retailerCountry property. * *

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

         *    getRetailerCountry().add(newItem);
         * 
* * *

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

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="currency" type="{}SimpleCurrency" maxOccurs="unbounded" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "currency" }) public static class SupportedCurrencies { protected List currency; /** * Gets the value of the currency 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 currency property. * *

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

         *    getCurrency().add(newItem);
         * 
* * *

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