Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7480 vikram.rag 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
import javax.xml.datatype.XMLGregorianCalendar;
20
 
21
 
22
/**
23
 * <p>Java class for anonymous complex type.
24
 * 
25
 * <p>The following schema fragment specifies the expected content contained within this class.
26
 * 
27
 * <pre>
28
 * &lt;complexType>
29
 *   &lt;complexContent>
30
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
31
 *       &lt;sequence>
32
 *         &lt;element name="Author" type="{}StringNotNull" minOccurs="0"/>
33
 *         &lt;element name="Binding" type="{}BindingTypes"/>
34
 *         &lt;element name="DustJacket" type="{}DustJacketTypes" minOccurs="0"/>
35
 *         &lt;element name="Edition" type="{}StringNotNull" minOccurs="0"/>
36
 *         &lt;element name="Illustrator" type="{}StringNotNull" minOccurs="0"/>
37
 *         &lt;element name="IsAdultProduct" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
38
 *         &lt;element name="IsFixedPrice" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
39
 *         &lt;element name="Language" type="{}LanguageStringType" minOccurs="0"/>
40
 *         &lt;element name="PublicationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
41
 *         &lt;element name="SignedBy" type="{}SignedByValues" minOccurs="0"/>
42
 *         &lt;element name="SourcedCountryCode" type="{}SourceCountryCodeValues" minOccurs="0"/>
43
 *         &lt;element name="Subject" type="{}StringNotNull" minOccurs="0"/>
44
 *         &lt;element name="Volume" type="{}StringNotNull" minOccurs="0"/>
45
 *       &lt;/sequence>
46
 *     &lt;/restriction>
47
 *   &lt;/complexContent>
48
 * &lt;/complexType>
49
 * </pre>
50
 * 
51
 * 
52
 */
53
@XmlAccessorType(XmlAccessType.FIELD)
54
@XmlType(name = "", propOrder = {
55
    "author",
56
    "binding",
57
    "dustJacket",
58
    "edition",
59
    "illustrator",
60
    "isAdultProduct",
61
    "isFixedPrice",
62
    "language",
63
    "publicationDate",
64
    "signedBy",
65
    "sourcedCountryCode",
66
    "subject",
67
    "volume"
68
})
69
@XmlRootElement(name = "BooksMisc")
70
public class BooksMisc {
71
 
72
    @XmlElement(name = "Author")
73
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
74
    protected String author;
75
    @XmlElement(name = "Binding", required = true)
76
    protected BindingTypes binding;
77
    @XmlElement(name = "DustJacket")
78
    protected DustJacketTypes dustJacket;
79
    @XmlElement(name = "Edition")
80
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
81
    protected String edition;
82
    @XmlElement(name = "Illustrator")
83
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
84
    protected String illustrator;
85
    @XmlElement(name = "IsAdultProduct")
86
    protected Boolean isAdultProduct;
87
    @XmlElement(name = "IsFixedPrice")
88
    protected Boolean isFixedPrice;
89
    @XmlElement(name = "Language")
90
    protected LanguageStringType language;
91
    @XmlElement(name = "PublicationDate")
92
    @XmlSchemaType(name = "dateTime")
93
    protected XMLGregorianCalendar publicationDate;
94
    @XmlElement(name = "SignedBy")
95
    protected SignedByValues signedBy;
96
    @XmlElement(name = "SourcedCountryCode")
97
    protected SourceCountryCodeValues sourcedCountryCode;
98
    @XmlElement(name = "Subject")
99
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
100
    protected String subject;
101
    @XmlElement(name = "Volume")
102
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
103
    protected String volume;
104
 
105
    /**
106
     * Gets the value of the author property.
107
     * 
108
     * @return
109
     *     possible object is
110
     *     {@link String }
111
     *     
112
     */
113
    public String getAuthor() {
114
        return author;
115
    }
116
 
117
    /**
118
     * Sets the value of the author property.
119
     * 
120
     * @param value
121
     *     allowed object is
122
     *     {@link String }
123
     *     
124
     */
125
    public void setAuthor(String value) {
126
        this.author = value;
127
    }
128
 
129
    /**
130
     * Gets the value of the binding property.
131
     * 
132
     * @return
133
     *     possible object is
134
     *     {@link BindingTypes }
135
     *     
136
     */
137
    public BindingTypes getBinding() {
138
        return binding;
139
    }
140
 
141
    /**
142
     * Sets the value of the binding property.
143
     * 
144
     * @param value
145
     *     allowed object is
146
     *     {@link BindingTypes }
147
     *     
148
     */
149
    public void setBinding(BindingTypes value) {
150
        this.binding = value;
151
    }
152
 
153
    /**
154
     * Gets the value of the dustJacket property.
155
     * 
156
     * @return
157
     *     possible object is
158
     *     {@link DustJacketTypes }
159
     *     
160
     */
161
    public DustJacketTypes getDustJacket() {
162
        return dustJacket;
163
    }
164
 
165
    /**
166
     * Sets the value of the dustJacket property.
167
     * 
168
     * @param value
169
     *     allowed object is
170
     *     {@link DustJacketTypes }
171
     *     
172
     */
173
    public void setDustJacket(DustJacketTypes value) {
174
        this.dustJacket = value;
175
    }
176
 
177
    /**
178
     * Gets the value of the edition property.
179
     * 
180
     * @return
181
     *     possible object is
182
     *     {@link String }
183
     *     
184
     */
185
    public String getEdition() {
186
        return edition;
187
    }
188
 
189
    /**
190
     * Sets the value of the edition property.
191
     * 
192
     * @param value
193
     *     allowed object is
194
     *     {@link String }
195
     *     
196
     */
197
    public void setEdition(String value) {
198
        this.edition = value;
199
    }
200
 
201
    /**
202
     * Gets the value of the illustrator property.
203
     * 
204
     * @return
205
     *     possible object is
206
     *     {@link String }
207
     *     
208
     */
209
    public String getIllustrator() {
210
        return illustrator;
211
    }
212
 
213
    /**
214
     * Sets the value of the illustrator property.
215
     * 
216
     * @param value
217
     *     allowed object is
218
     *     {@link String }
219
     *     
220
     */
221
    public void setIllustrator(String value) {
222
        this.illustrator = value;
223
    }
224
 
225
    /**
226
     * Gets the value of the isAdultProduct property.
227
     * 
228
     * @return
229
     *     possible object is
230
     *     {@link Boolean }
231
     *     
232
     */
233
    public Boolean isIsAdultProduct() {
234
        return isAdultProduct;
235
    }
236
 
237
    /**
238
     * Sets the value of the isAdultProduct property.
239
     * 
240
     * @param value
241
     *     allowed object is
242
     *     {@link Boolean }
243
     *     
244
     */
245
    public void setIsAdultProduct(Boolean value) {
246
        this.isAdultProduct = value;
247
    }
248
 
249
    /**
250
     * Gets the value of the isFixedPrice property.
251
     * 
252
     * @return
253
     *     possible object is
254
     *     {@link Boolean }
255
     *     
256
     */
257
    public Boolean isIsFixedPrice() {
258
        return isFixedPrice;
259
    }
260
 
261
    /**
262
     * Sets the value of the isFixedPrice property.
263
     * 
264
     * @param value
265
     *     allowed object is
266
     *     {@link Boolean }
267
     *     
268
     */
269
    public void setIsFixedPrice(Boolean value) {
270
        this.isFixedPrice = value;
271
    }
272
 
273
    /**
274
     * Gets the value of the language property.
275
     * 
276
     * @return
277
     *     possible object is
278
     *     {@link LanguageStringType }
279
     *     
280
     */
281
    public LanguageStringType getLanguage() {
282
        return language;
283
    }
284
 
285
    /**
286
     * Sets the value of the language property.
287
     * 
288
     * @param value
289
     *     allowed object is
290
     *     {@link LanguageStringType }
291
     *     
292
     */
293
    public void setLanguage(LanguageStringType value) {
294
        this.language = value;
295
    }
296
 
297
    /**
298
     * Gets the value of the publicationDate property.
299
     * 
300
     * @return
301
     *     possible object is
302
     *     {@link XMLGregorianCalendar }
303
     *     
304
     */
305
    public XMLGregorianCalendar getPublicationDate() {
306
        return publicationDate;
307
    }
308
 
309
    /**
310
     * Sets the value of the publicationDate property.
311
     * 
312
     * @param value
313
     *     allowed object is
314
     *     {@link XMLGregorianCalendar }
315
     *     
316
     */
317
    public void setPublicationDate(XMLGregorianCalendar value) {
318
        this.publicationDate = value;
319
    }
320
 
321
    /**
322
     * Gets the value of the signedBy property.
323
     * 
324
     * @return
325
     *     possible object is
326
     *     {@link SignedByValues }
327
     *     
328
     */
329
    public SignedByValues getSignedBy() {
330
        return signedBy;
331
    }
332
 
333
    /**
334
     * Sets the value of the signedBy property.
335
     * 
336
     * @param value
337
     *     allowed object is
338
     *     {@link SignedByValues }
339
     *     
340
     */
341
    public void setSignedBy(SignedByValues value) {
342
        this.signedBy = value;
343
    }
344
 
345
    /**
346
     * Gets the value of the sourcedCountryCode property.
347
     * 
348
     * @return
349
     *     possible object is
350
     *     {@link SourceCountryCodeValues }
351
     *     
352
     */
353
    public SourceCountryCodeValues getSourcedCountryCode() {
354
        return sourcedCountryCode;
355
    }
356
 
357
    /**
358
     * Sets the value of the sourcedCountryCode property.
359
     * 
360
     * @param value
361
     *     allowed object is
362
     *     {@link SourceCountryCodeValues }
363
     *     
364
     */
365
    public void setSourcedCountryCode(SourceCountryCodeValues value) {
366
        this.sourcedCountryCode = value;
367
    }
368
 
369
    /**
370
     * Gets the value of the subject property.
371
     * 
372
     * @return
373
     *     possible object is
374
     *     {@link String }
375
     *     
376
     */
377
    public String getSubject() {
378
        return subject;
379
    }
380
 
381
    /**
382
     * Sets the value of the subject property.
383
     * 
384
     * @param value
385
     *     allowed object is
386
     *     {@link String }
387
     *     
388
     */
389
    public void setSubject(String value) {
390
        this.subject = value;
391
    }
392
 
393
    /**
394
     * Gets the value of the volume property.
395
     * 
396
     * @return
397
     *     possible object is
398
     *     {@link String }
399
     *     
400
     */
401
    public String getVolume() {
402
        return volume;
403
    }
404
 
405
    /**
406
     * Sets the value of the volume property.
407
     * 
408
     * @param value
409
     *     allowed object is
410
     *     {@link String }
411
     *     
412
     */
413
    public void setVolume(String value) {
414
        this.volume = value;
415
    }
416
 
417
}