Blame | Last modification | View Log | RSS feed
//// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6// 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: 2013.03.04 at 03:49:29 PM IST//package in.shop2020.feeds.products;import javax.xml.bind.annotation.XmlAccessType;import javax.xml.bind.annotation.XmlAccessorType;import javax.xml.bind.annotation.XmlElement;import javax.xml.bind.annotation.XmlRootElement;import javax.xml.bind.annotation.XmlSchemaType;import javax.xml.bind.annotation.XmlType;import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;/*** <p>Java class for anonymous complex type.** <p>The following schema fragment specifies the expected content contained within this class.** <pre>* <complexType>* <complexContent>* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">* <sequence>* <element ref="{}SKU"/>* <element name="ImageType">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="Main"/>* <enumeration value="Swatch"/>* <enumeration value="PT1"/>* <enumeration value="PT2"/>* <enumeration value="PT3"/>* <enumeration value="PT4"/>* <enumeration value="PT5"/>* <enumeration value="PT6"/>* <enumeration value="PT7"/>* <enumeration value="PT8"/>* <enumeration value="Search"/>* </restriction>* </simpleType>* </element>* <element name="ImageLocation" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/>* </sequence>* </restriction>* </complexContent>* </complexType>* </pre>***/@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "", propOrder = {"sku","imageType","imageLocation"})@XmlRootElement(name = "ProductImage")public class ProductImage {@XmlElement(name = "SKU", required = true)@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String sku;@XmlElement(name = "ImageType", required = true)protected String imageType;@XmlElement(name = "ImageLocation")@XmlSchemaType(name = "anyURI")protected String imageLocation;/*** Gets the value of the sku property.** @return* possible object is* {@link String }**/public String getSKU() {return sku;}/*** Sets the value of the sku property.** @param value* allowed object is* {@link String }**/public void setSKU(String value) {this.sku = value;}/*** Gets the value of the imageType property.** @return* possible object is* {@link String }**/public String getImageType() {return imageType;}/*** Sets the value of the imageType property.** @param value* allowed object is* {@link String }**/public void setImageType(String value) {this.imageType = value;}/*** Gets the value of the imageLocation property.** @return* possible object is* {@link String }**/public String getImageLocation() {return imageLocation;}/*** Sets the value of the imageLocation property.** @param value* allowed object is* {@link String }**/public void setImageLocation(String value) {this.imageLocation = value;}}