// // 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.25 at 05:27:52 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 RetailerCountry.Languages languages;
protected ItemState state;
@XmlElement(required = true)
protected RetailerCountry.SupportedCurrencies supportedCurrencies;
protected RetailerCountry.RetailerCountries retailerCountries;
protected boolean supportGiftCard;
/**
* Gets the value of the country property.
*
* @return
* possible object is
* {@link Country }
*
*/
public Country getCountry() {
return country;
}
/**
* Sets the value of the country property.
*
* @param value
* allowed object is
* {@link 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 RetailerCountry.Languages }
*
*/
public RetailerCountry.Languages getLanguages() {
return languages;
}
/**
* Sets the value of the languages property.
*
* @param value
* allowed object is
* {@link RetailerCountry.Languages }
*
*/
public void setLanguages(RetailerCountry.Languages value) {
this.languages = value;
}
/**
* Gets the value of the state property.
*
* @return
* possible object is
* {@link ItemState }
*
*/
public ItemState getState() {
return state;
}
/**
* Sets the value of the state property.
*
* @param value
* allowed object is
* {@link ItemState }
*
*/
public void setState(ItemState value) {
this.state = value;
}
/**
* Gets the value of the supportedCurrencies property.
*
* @return
* possible object is
* {@link RetailerCountry.SupportedCurrencies }
*
*/
public RetailerCountry.SupportedCurrencies getSupportedCurrencies() {
return supportedCurrencies;
}
/**
* Sets the value of the supportedCurrencies property.
*
* @param value
* allowed object is
* {@link RetailerCountry.SupportedCurrencies }
*
*/
public void setSupportedCurrencies(RetailerCountry.SupportedCurrencies value) {
this.supportedCurrencies = value;
}
/**
* Gets the value of the retailerCountries property.
*
* @return
* possible object is
* {@link RetailerCountry.RetailerCountries }
*
*/
public RetailerCountry.RetailerCountries getRetailerCountries() {
return retailerCountries;
}
/**
* Sets the value of the retailerCountries property.
*
* @param value
* allowed object is
* {@link RetailerCountry.RetailerCountries }
*
*/
public void setRetailerCountries(RetailerCountry.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
* 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 RetailerCountry.Languages.Entry }
*
*
*/
public List Java class for anonymous complex type.
*
* The following schema fragment specifies the expected content contained within this class.
*
* Java class for anonymous complex type.
*
* The following schema fragment specifies the expected content contained within this class.
*
*
* 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
* For example, to add a new item, do as follows:
*
* Objects of the following type(s) are allowed in the list
* {@link RetailerCountryInfo }
*
*
*/
public List Java class for anonymous complex type.
*
* The following schema fragment specifies the expected content contained within this class.
*
*
* 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
* For example, to add a new item, do as follows:
*
* Objects of the following type(s) are allowed in the list
* {@link RetailerCountry.SupportedCurrencies.Entry }
*
*
*/
public List 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 ItemState }
*
*/
public ItemState getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link ItemState }
*
*/
public void setValue(ItemState value) {
this.value = value;
}
}
}
/**
*
* <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 Listset method for the retailerCountryInformation property.
*
*
* getRetailerCountryInformation().add(newItem);
*
*
*
*
* <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 Listset method for the entry property.
*
*
* getEntry().add(newItem);
*
*
*
*
* <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 ItemState }
*
*/
public ItemState getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link ItemState }
*
*/
public void setValue(ItemState value) {
this.value = value;
}
}
}
}