Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7487 kshitij.so 1
//
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 
3
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4
// Any modifications to this file will be lost upon recompilation of the source schema. 
5
// Generated on: 2013.03.04 at 03:49:29 PM IST 
6
//
7
 
8
 
9
package in.shop2020.feeds.products;
10
 
11
import javax.xml.bind.annotation.XmlAccessType;
12
import javax.xml.bind.annotation.XmlAccessorType;
13
import javax.xml.bind.annotation.XmlElement;
14
import javax.xml.bind.annotation.XmlRootElement;
15
import javax.xml.bind.annotation.XmlSchemaType;
16
import javax.xml.bind.annotation.XmlType;
17
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
18
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
19
 
20
 
21
/**
22
 * <p>Java class for anonymous complex type.
23
 * 
24
 * <p>The following schema fragment specifies the expected content contained within this class.
25
 * 
26
 * <pre>
27
 * &lt;complexType>
28
 *   &lt;complexContent>
29
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30
 *       &lt;sequence>
31
 *         &lt;element ref="{}SKU"/>
32
 *         &lt;element name="ImageType">
33
 *           &lt;simpleType>
34
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
35
 *               &lt;enumeration value="Main"/>
36
 *               &lt;enumeration value="Swatch"/>
37
 *               &lt;enumeration value="PT1"/>
38
 *               &lt;enumeration value="PT2"/>
39
 *               &lt;enumeration value="PT3"/>
40
 *               &lt;enumeration value="PT4"/>
41
 *               &lt;enumeration value="PT5"/>
42
 *               &lt;enumeration value="PT6"/>
43
 *               &lt;enumeration value="PT7"/>
44
 *               &lt;enumeration value="PT8"/>
45
 *               &lt;enumeration value="Search"/>
46
 *             &lt;/restriction>
47
 *           &lt;/simpleType>
48
 *         &lt;/element>
49
 *         &lt;element name="ImageLocation" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/>
50
 *       &lt;/sequence>
51
 *     &lt;/restriction>
52
 *   &lt;/complexContent>
53
 * &lt;/complexType>
54
 * </pre>
55
 * 
56
 * 
57
 */
58
@XmlAccessorType(XmlAccessType.FIELD)
59
@XmlType(name = "", propOrder = {
60
    "sku",
61
    "imageType",
62
    "imageLocation"
63
})
64
@XmlRootElement(name = "ProductImage")
65
public class ProductImage {
66
 
67
    @XmlElement(name = "SKU", required = true)
68
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
69
    protected String sku;
70
    @XmlElement(name = "ImageType", required = true)
71
    protected String imageType;
72
    @XmlElement(name = "ImageLocation")
73
    @XmlSchemaType(name = "anyURI")
74
    protected String imageLocation;
75
 
76
    /**
77
     * Gets the value of the sku property.
78
     * 
79
     * @return
80
     *     possible object is
81
     *     {@link String }
82
     *     
83
     */
84
    public String getSKU() {
85
        return sku;
86
    }
87
 
88
    /**
89
     * Sets the value of the sku property.
90
     * 
91
     * @param value
92
     *     allowed object is
93
     *     {@link String }
94
     *     
95
     */
96
    public void setSKU(String value) {
97
        this.sku = value;
98
    }
99
 
100
    /**
101
     * Gets the value of the imageType property.
102
     * 
103
     * @return
104
     *     possible object is
105
     *     {@link String }
106
     *     
107
     */
108
    public String getImageType() {
109
        return imageType;
110
    }
111
 
112
    /**
113
     * Sets the value of the imageType property.
114
     * 
115
     * @param value
116
     *     allowed object is
117
     *     {@link String }
118
     *     
119
     */
120
    public void setImageType(String value) {
121
        this.imageType = value;
122
    }
123
 
124
    /**
125
     * Gets the value of the imageLocation property.
126
     * 
127
     * @return
128
     *     possible object is
129
     *     {@link String }
130
     *     
131
     */
132
    public String getImageLocation() {
133
        return imageLocation;
134
    }
135
 
136
    /**
137
     * Sets the value of the imageLocation property.
138
     * 
139
     * @param value
140
     *     allowed object is
141
     *     {@link String }
142
     *     
143
     */
144
    public void setImageLocation(String value) {
145
        this.imageLocation = value;
146
    }
147
 
148
}