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.XmlType;
16
 
17
 
18
/**
19
 * <p>Java class for anonymous complex type.
20
 * 
21
 * <p>The following schema fragment specifies the expected content contained within this class.
22
 * 
23
 * <pre>
24
 * &lt;complexType>
25
 *   &lt;complexContent>
26
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27
 *       &lt;sequence>
28
 *         &lt;element name="PaperType" minOccurs="0">
29
 *           &lt;simpleType>
30
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
31
 *               &lt;enumeration value="black-and-white"/>
32
 *               &lt;enumeration value="color-negative"/>
33
 *               &lt;enumeration value="color-reversal"/>
34
 *               &lt;enumeration value="ra-chemistry"/>
35
 *               &lt;enumeration value="other"/>
36
 *             &lt;/restriction>
37
 *           &lt;/simpleType>
38
 *         &lt;/element>
39
 *         &lt;element name="PaperBase" minOccurs="0">
40
 *           &lt;simpleType>
41
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
42
 *               &lt;enumeration value="polyester-based"/>
43
 *               &lt;enumeration value="fiber-based"/>
44
 *               &lt;enumeration value="resin-coated"/>
45
 *               &lt;enumeration value="other"/>
46
 *             &lt;/restriction>
47
 *           &lt;/simpleType>
48
 *         &lt;/element>
49
 *         &lt;element name="PaperSurface" minOccurs="0">
50
 *           &lt;simpleType>
51
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
52
 *               &lt;enumeration value="glossy"/>
53
 *               &lt;enumeration value="semi-glossy"/>
54
 *               &lt;enumeration value="matt"/>
55
 *               &lt;enumeration value="semi-matt"/>
56
 *               &lt;enumeration value="pearl"/>
57
 *               &lt;enumeration value="luster"/>
58
 *               &lt;enumeration value="satin"/>
59
 *               &lt;enumeration value="other"/>
60
 *             &lt;/restriction>
61
 *           &lt;/simpleType>
62
 *         &lt;/element>
63
 *         &lt;element name="PaperGrade" minOccurs="0">
64
 *           &lt;simpleType>
65
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
66
 *               &lt;enumeration value="grade-0"/>
67
 *               &lt;enumeration value="grade-1"/>
68
 *               &lt;enumeration value="grade-2"/>
69
 *               &lt;enumeration value="grade-3"/>
70
 *               &lt;enumeration value="grade-4"/>
71
 *               &lt;enumeration value="multigrade"/>
72
 *             &lt;/restriction>
73
 *           &lt;/simpleType>
74
 *         &lt;/element>
75
 *         &lt;element name="PaperSize" minOccurs="0">
76
 *           &lt;simpleType>
77
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
78
 *               &lt;enumeration value="10x10"/>
79
 *               &lt;enumeration value="10x12"/>
80
 *               &lt;enumeration value="10x20"/>
81
 *               &lt;enumeration value="11x14"/>
82
 *               &lt;enumeration value="12x17"/>
83
 *               &lt;enumeration value="16x20"/>
84
 *               &lt;enumeration value="20x24"/>
85
 *               &lt;enumeration value="20x30"/>
86
 *               &lt;enumeration value="24x30"/>
87
 *               &lt;enumeration value="3.5x5"/>
88
 *               &lt;enumeration value="30x40"/>
89
 *               &lt;enumeration value="4x5"/>
90
 *               &lt;enumeration value="4x6"/>
91
 *               &lt;enumeration value="5x7"/>
92
 *               &lt;enumeration value="8.5x11"/>
93
 *               &lt;enumeration value="8x10"/>
94
 *               &lt;enumeration value="roll"/>
95
 *               &lt;enumeration value="other"/>
96
 *             &lt;/restriction>
97
 *           &lt;/simpleType>
98
 *         &lt;/element>
99
 *       &lt;/sequence>
100
 *     &lt;/restriction>
101
 *   &lt;/complexContent>
102
 * &lt;/complexType>
103
 * </pre>
104
 * 
105
 * 
106
 */
107
@XmlAccessorType(XmlAccessType.FIELD)
108
@XmlType(name = "", propOrder = {
109
    "paperType",
110
    "paperBase",
111
    "paperSurface",
112
    "paperGrade",
113
    "paperSize"
114
})
115
@XmlRootElement(name = "PhotoPaper")
116
public class PhotoPaper {
117
 
118
    @XmlElement(name = "PaperType")
119
    protected String paperType;
120
    @XmlElement(name = "PaperBase")
121
    protected String paperBase;
122
    @XmlElement(name = "PaperSurface")
123
    protected String paperSurface;
124
    @XmlElement(name = "PaperGrade")
125
    protected String paperGrade;
126
    @XmlElement(name = "PaperSize")
127
    protected String paperSize;
128
 
129
    /**
130
     * Gets the value of the paperType property.
131
     * 
132
     * @return
133
     *     possible object is
134
     *     {@link String }
135
     *     
136
     */
137
    public String getPaperType() {
138
        return paperType;
139
    }
140
 
141
    /**
142
     * Sets the value of the paperType property.
143
     * 
144
     * @param value
145
     *     allowed object is
146
     *     {@link String }
147
     *     
148
     */
149
    public void setPaperType(String value) {
150
        this.paperType = value;
151
    }
152
 
153
    /**
154
     * Gets the value of the paperBase property.
155
     * 
156
     * @return
157
     *     possible object is
158
     *     {@link String }
159
     *     
160
     */
161
    public String getPaperBase() {
162
        return paperBase;
163
    }
164
 
165
    /**
166
     * Sets the value of the paperBase property.
167
     * 
168
     * @param value
169
     *     allowed object is
170
     *     {@link String }
171
     *     
172
     */
173
    public void setPaperBase(String value) {
174
        this.paperBase = value;
175
    }
176
 
177
    /**
178
     * Gets the value of the paperSurface property.
179
     * 
180
     * @return
181
     *     possible object is
182
     *     {@link String }
183
     *     
184
     */
185
    public String getPaperSurface() {
186
        return paperSurface;
187
    }
188
 
189
    /**
190
     * Sets the value of the paperSurface property.
191
     * 
192
     * @param value
193
     *     allowed object is
194
     *     {@link String }
195
     *     
196
     */
197
    public void setPaperSurface(String value) {
198
        this.paperSurface = value;
199
    }
200
 
201
    /**
202
     * Gets the value of the paperGrade property.
203
     * 
204
     * @return
205
     *     possible object is
206
     *     {@link String }
207
     *     
208
     */
209
    public String getPaperGrade() {
210
        return paperGrade;
211
    }
212
 
213
    /**
214
     * Sets the value of the paperGrade property.
215
     * 
216
     * @param value
217
     *     allowed object is
218
     *     {@link String }
219
     *     
220
     */
221
    public void setPaperGrade(String value) {
222
        this.paperGrade = value;
223
    }
224
 
225
    /**
226
     * Gets the value of the paperSize property.
227
     * 
228
     * @return
229
     *     possible object is
230
     *     {@link String }
231
     *     
232
     */
233
    public String getPaperSize() {
234
        return paperSize;
235
    }
236
 
237
    /**
238
     * Sets the value of the paperSize property.
239
     * 
240
     * @param value
241
     *     allowed object is
242
     *     {@link String }
243
     *     
244
     */
245
    public void setPaperSize(String value) {
246
        this.paperSize = value;
247
    }
248
 
249
}