Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7481 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 java.math.BigInteger;
12
import java.util.ArrayList;
13
import java.util.List;
14
import javax.xml.bind.annotation.XmlAccessType;
15
import javax.xml.bind.annotation.XmlAccessorType;
16
import javax.xml.bind.annotation.XmlAttribute;
17
import javax.xml.bind.annotation.XmlElement;
18
import javax.xml.bind.annotation.XmlRootElement;
19
import javax.xml.bind.annotation.XmlSchemaType;
20
import javax.xml.bind.annotation.XmlType;
21
import javax.xml.bind.annotation.XmlValue;
22
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
23
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
24
 
25
 
26
/**
27
 * <p>Java class for anonymous complex type.
28
 * 
29
 * <p>The following schema fragment specifies the expected content contained within this class.
30
 * 
31
 * <pre>
32
 * &lt;complexType>
33
 *   &lt;complexContent>
34
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
35
 *       &lt;sequence>
36
 *         &lt;element name="VariationData" minOccurs="0">
37
 *           &lt;complexType>
38
 *             &lt;complexContent>
39
 *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
40
 *                 &lt;sequence>
41
 *                   &lt;element name="Parentage">
42
 *                     &lt;simpleType>
43
 *                       &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
44
 *                         &lt;enumeration value="parent"/>
45
 *                         &lt;enumeration value="child"/>
46
 *                       &lt;/restriction>
47
 *                     &lt;/simpleType>
48
 *                   &lt;/element>
49
 *                   &lt;element name="VariationTheme" minOccurs="0">
50
 *                     &lt;simpleType>
51
 *                       &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
52
 *                         &lt;enumeration value="Size"/>
53
 *                         &lt;enumeration value="Color"/>
54
 *                         &lt;enumeration value="Flavor"/>
55
 *                         &lt;enumeration value="Flavor-Size"/>
56
 *                       &lt;/restriction>
57
 *                     &lt;/simpleType>
58
 *                   &lt;/element>
59
 *                   &lt;element name="Size" type="{}StringNotNull" minOccurs="0"/>
60
 *                   &lt;element name="Color" type="{}StringNotNull" minOccurs="0"/>
61
 *                   &lt;element name="Flavor" type="{}StringNotNull" minOccurs="0"/>
62
 *                 &lt;/sequence>
63
 *               &lt;/restriction>
64
 *             &lt;/complexContent>
65
 *           &lt;/complexType>
66
 *         &lt;/element>
67
 *         &lt;element name="CountryProducedIn" type="{}LongStringNotNull" minOccurs="0"/>
68
 *         &lt;element name="Ingredients" type="{}LongStringNotNull" minOccurs="0"/>
69
 *         &lt;element name="NutritionalFacts" type="{}LongStringNotNull" minOccurs="0"/>
70
 *         &lt;element name="KosherCertification" type="{}HundredString" maxOccurs="5" minOccurs="0"/>
71
 *         &lt;element name="OrganicCertification" type="{}StringNotNull" maxOccurs="5" minOccurs="0"/>
72
 *         &lt;element name="ItemSpecialty" type="{}StringNotNull" maxOccurs="5" minOccurs="0"/>
73
 *         &lt;element name="Warnings" type="{}LongStringNotNull" minOccurs="0"/>
74
 *         &lt;element name="Directions" type="{}LongStringNotNull" minOccurs="0"/>
75
 *         &lt;element name="ItemPackageQuantity" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" minOccurs="0"/>
76
 *         &lt;element name="NumberOfItems" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" minOccurs="0"/>
77
 *         &lt;element name="DisplayLength" type="{}LengthDimension" minOccurs="0"/>
78
 *         &lt;element name="DisplayWeight" type="{}WeightDimension" minOccurs="0"/>
79
 *         &lt;element name="DisplayVolume" type="{}VolumeDimension" minOccurs="0"/>
80
 *         &lt;element name="UnitCount" minOccurs="0">
81
 *           &lt;complexType>
82
 *             &lt;simpleContent>
83
 *               &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>positiveInteger">
84
 *                 &lt;attribute name="unitOfMeasure" use="required" type="{}StringNotNull" />
85
 *               &lt;/extension>
86
 *             &lt;/simpleContent>
87
 *           &lt;/complexType>
88
 *         &lt;/element>
89
 *       &lt;/sequence>
90
 *     &lt;/restriction>
91
 *   &lt;/complexContent>
92
 * &lt;/complexType>
93
 * </pre>
94
 * 
95
 * 
96
 */
97
@XmlAccessorType(XmlAccessType.FIELD)
98
@XmlType(name = "", propOrder = {
99
    "variationData",
100
    "countryProducedIn",
101
    "ingredients",
102
    "nutritionalFacts",
103
    "kosherCertification",
104
    "organicCertification",
105
    "itemSpecialty",
106
    "warnings",
107
    "directions",
108
    "itemPackageQuantity",
109
    "numberOfItems",
110
    "displayLength",
111
    "displayWeight",
112
    "displayVolume",
113
    "unitCount"
114
})
115
@XmlRootElement(name = "GourmetMisc")
116
public class GourmetMisc {
117
 
118
    @XmlElement(name = "VariationData")
119
    protected GourmetMisc.VariationData variationData;
120
    @XmlElement(name = "CountryProducedIn")
121
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
122
    protected String countryProducedIn;
123
    @XmlElement(name = "Ingredients")
124
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
125
    protected String ingredients;
126
    @XmlElement(name = "NutritionalFacts")
127
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
128
    protected String nutritionalFacts;
129
    @XmlElement(name = "KosherCertification")
130
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
131
    protected List<String> kosherCertification;
132
    @XmlElement(name = "OrganicCertification")
133
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
134
    protected List<String> organicCertification;
135
    @XmlElement(name = "ItemSpecialty")
136
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
137
    protected List<String> itemSpecialty;
138
    @XmlElement(name = "Warnings")
139
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
140
    protected String warnings;
141
    @XmlElement(name = "Directions")
142
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
143
    protected String directions;
144
    @XmlElement(name = "ItemPackageQuantity")
145
    @XmlSchemaType(name = "positiveInteger")
146
    protected BigInteger itemPackageQuantity;
147
    @XmlElement(name = "NumberOfItems")
148
    @XmlSchemaType(name = "positiveInteger")
149
    protected BigInteger numberOfItems;
150
    @XmlElement(name = "DisplayLength")
151
    protected LengthDimension displayLength;
152
    @XmlElement(name = "DisplayWeight")
153
    protected WeightDimension displayWeight;
154
    @XmlElement(name = "DisplayVolume")
155
    protected VolumeDimension displayVolume;
156
    @XmlElement(name = "UnitCount")
157
    protected GourmetMisc.UnitCount unitCount;
158
 
159
    /**
160
     * Gets the value of the variationData property.
161
     * 
162
     * @return
163
     *     possible object is
164
     *     {@link GourmetMisc.VariationData }
165
     *     
166
     */
167
    public GourmetMisc.VariationData getVariationData() {
168
        return variationData;
169
    }
170
 
171
    /**
172
     * Sets the value of the variationData property.
173
     * 
174
     * @param value
175
     *     allowed object is
176
     *     {@link GourmetMisc.VariationData }
177
     *     
178
     */
179
    public void setVariationData(GourmetMisc.VariationData value) {
180
        this.variationData = value;
181
    }
182
 
183
    /**
184
     * Gets the value of the countryProducedIn property.
185
     * 
186
     * @return
187
     *     possible object is
188
     *     {@link String }
189
     *     
190
     */
191
    public String getCountryProducedIn() {
192
        return countryProducedIn;
193
    }
194
 
195
    /**
196
     * Sets the value of the countryProducedIn property.
197
     * 
198
     * @param value
199
     *     allowed object is
200
     *     {@link String }
201
     *     
202
     */
203
    public void setCountryProducedIn(String value) {
204
        this.countryProducedIn = value;
205
    }
206
 
207
    /**
208
     * Gets the value of the ingredients property.
209
     * 
210
     * @return
211
     *     possible object is
212
     *     {@link String }
213
     *     
214
     */
215
    public String getIngredients() {
216
        return ingredients;
217
    }
218
 
219
    /**
220
     * Sets the value of the ingredients property.
221
     * 
222
     * @param value
223
     *     allowed object is
224
     *     {@link String }
225
     *     
226
     */
227
    public void setIngredients(String value) {
228
        this.ingredients = value;
229
    }
230
 
231
    /**
232
     * Gets the value of the nutritionalFacts property.
233
     * 
234
     * @return
235
     *     possible object is
236
     *     {@link String }
237
     *     
238
     */
239
    public String getNutritionalFacts() {
240
        return nutritionalFacts;
241
    }
242
 
243
    /**
244
     * Sets the value of the nutritionalFacts property.
245
     * 
246
     * @param value
247
     *     allowed object is
248
     *     {@link String }
249
     *     
250
     */
251
    public void setNutritionalFacts(String value) {
252
        this.nutritionalFacts = value;
253
    }
254
 
255
    /**
256
     * Gets the value of the kosherCertification property.
257
     * 
258
     * <p>
259
     * This accessor method returns a reference to the live list,
260
     * not a snapshot. Therefore any modification you make to the
261
     * returned list will be present inside the JAXB object.
262
     * This is why there is not a <CODE>set</CODE> method for the kosherCertification property.
263
     * 
264
     * <p>
265
     * For example, to add a new item, do as follows:
266
     * <pre>
267
     *    getKosherCertification().add(newItem);
268
     * </pre>
269
     * 
270
     * 
271
     * <p>
272
     * Objects of the following type(s) are allowed in the list
273
     * {@link String }
274
     * 
275
     * 
276
     */
277
    public List<String> getKosherCertification() {
278
        if (kosherCertification == null) {
279
            kosherCertification = new ArrayList<String>();
280
        }
281
        return this.kosherCertification;
282
    }
283
 
284
    /**
285
     * Gets the value of the organicCertification property.
286
     * 
287
     * <p>
288
     * This accessor method returns a reference to the live list,
289
     * not a snapshot. Therefore any modification you make to the
290
     * returned list will be present inside the JAXB object.
291
     * This is why there is not a <CODE>set</CODE> method for the organicCertification property.
292
     * 
293
     * <p>
294
     * For example, to add a new item, do as follows:
295
     * <pre>
296
     *    getOrganicCertification().add(newItem);
297
     * </pre>
298
     * 
299
     * 
300
     * <p>
301
     * Objects of the following type(s) are allowed in the list
302
     * {@link String }
303
     * 
304
     * 
305
     */
306
    public List<String> getOrganicCertification() {
307
        if (organicCertification == null) {
308
            organicCertification = new ArrayList<String>();
309
        }
310
        return this.organicCertification;
311
    }
312
 
313
    /**
314
     * Gets the value of the itemSpecialty property.
315
     * 
316
     * <p>
317
     * This accessor method returns a reference to the live list,
318
     * not a snapshot. Therefore any modification you make to the
319
     * returned list will be present inside the JAXB object.
320
     * This is why there is not a <CODE>set</CODE> method for the itemSpecialty property.
321
     * 
322
     * <p>
323
     * For example, to add a new item, do as follows:
324
     * <pre>
325
     *    getItemSpecialty().add(newItem);
326
     * </pre>
327
     * 
328
     * 
329
     * <p>
330
     * Objects of the following type(s) are allowed in the list
331
     * {@link String }
332
     * 
333
     * 
334
     */
335
    public List<String> getItemSpecialty() {
336
        if (itemSpecialty == null) {
337
            itemSpecialty = new ArrayList<String>();
338
        }
339
        return this.itemSpecialty;
340
    }
341
 
342
    /**
343
     * Gets the value of the warnings property.
344
     * 
345
     * @return
346
     *     possible object is
347
     *     {@link String }
348
     *     
349
     */
350
    public String getWarnings() {
351
        return warnings;
352
    }
353
 
354
    /**
355
     * Sets the value of the warnings property.
356
     * 
357
     * @param value
358
     *     allowed object is
359
     *     {@link String }
360
     *     
361
     */
362
    public void setWarnings(String value) {
363
        this.warnings = value;
364
    }
365
 
366
    /**
367
     * Gets the value of the directions property.
368
     * 
369
     * @return
370
     *     possible object is
371
     *     {@link String }
372
     *     
373
     */
374
    public String getDirections() {
375
        return directions;
376
    }
377
 
378
    /**
379
     * Sets the value of the directions property.
380
     * 
381
     * @param value
382
     *     allowed object is
383
     *     {@link String }
384
     *     
385
     */
386
    public void setDirections(String value) {
387
        this.directions = value;
388
    }
389
 
390
    /**
391
     * Gets the value of the itemPackageQuantity property.
392
     * 
393
     * @return
394
     *     possible object is
395
     *     {@link BigInteger }
396
     *     
397
     */
398
    public BigInteger getItemPackageQuantity() {
399
        return itemPackageQuantity;
400
    }
401
 
402
    /**
403
     * Sets the value of the itemPackageQuantity property.
404
     * 
405
     * @param value
406
     *     allowed object is
407
     *     {@link BigInteger }
408
     *     
409
     */
410
    public void setItemPackageQuantity(BigInteger value) {
411
        this.itemPackageQuantity = value;
412
    }
413
 
414
    /**
415
     * Gets the value of the numberOfItems property.
416
     * 
417
     * @return
418
     *     possible object is
419
     *     {@link BigInteger }
420
     *     
421
     */
422
    public BigInteger getNumberOfItems() {
423
        return numberOfItems;
424
    }
425
 
426
    /**
427
     * Sets the value of the numberOfItems property.
428
     * 
429
     * @param value
430
     *     allowed object is
431
     *     {@link BigInteger }
432
     *     
433
     */
434
    public void setNumberOfItems(BigInteger value) {
435
        this.numberOfItems = value;
436
    }
437
 
438
    /**
439
     * Gets the value of the displayLength property.
440
     * 
441
     * @return
442
     *     possible object is
443
     *     {@link LengthDimension }
444
     *     
445
     */
446
    public LengthDimension getDisplayLength() {
447
        return displayLength;
448
    }
449
 
450
    /**
451
     * Sets the value of the displayLength property.
452
     * 
453
     * @param value
454
     *     allowed object is
455
     *     {@link LengthDimension }
456
     *     
457
     */
458
    public void setDisplayLength(LengthDimension value) {
459
        this.displayLength = value;
460
    }
461
 
462
    /**
463
     * Gets the value of the displayWeight property.
464
     * 
465
     * @return
466
     *     possible object is
467
     *     {@link WeightDimension }
468
     *     
469
     */
470
    public WeightDimension getDisplayWeight() {
471
        return displayWeight;
472
    }
473
 
474
    /**
475
     * Sets the value of the displayWeight property.
476
     * 
477
     * @param value
478
     *     allowed object is
479
     *     {@link WeightDimension }
480
     *     
481
     */
482
    public void setDisplayWeight(WeightDimension value) {
483
        this.displayWeight = value;
484
    }
485
 
486
    /**
487
     * Gets the value of the displayVolume property.
488
     * 
489
     * @return
490
     *     possible object is
491
     *     {@link VolumeDimension }
492
     *     
493
     */
494
    public VolumeDimension getDisplayVolume() {
495
        return displayVolume;
496
    }
497
 
498
    /**
499
     * Sets the value of the displayVolume property.
500
     * 
501
     * @param value
502
     *     allowed object is
503
     *     {@link VolumeDimension }
504
     *     
505
     */
506
    public void setDisplayVolume(VolumeDimension value) {
507
        this.displayVolume = value;
508
    }
509
 
510
    /**
511
     * Gets the value of the unitCount property.
512
     * 
513
     * @return
514
     *     possible object is
515
     *     {@link GourmetMisc.UnitCount }
516
     *     
517
     */
518
    public GourmetMisc.UnitCount getUnitCount() {
519
        return unitCount;
520
    }
521
 
522
    /**
523
     * Sets the value of the unitCount property.
524
     * 
525
     * @param value
526
     *     allowed object is
527
     *     {@link GourmetMisc.UnitCount }
528
     *     
529
     */
530
    public void setUnitCount(GourmetMisc.UnitCount value) {
531
        this.unitCount = value;
532
    }
533
 
534
 
535
    /**
536
     * <p>Java class for anonymous complex type.
537
     * 
538
     * <p>The following schema fragment specifies the expected content contained within this class.
539
     * 
540
     * <pre>
541
     * &lt;complexType>
542
     *   &lt;simpleContent>
543
     *     &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>positiveInteger">
544
     *       &lt;attribute name="unitOfMeasure" use="required" type="{}StringNotNull" />
545
     *     &lt;/extension>
546
     *   &lt;/simpleContent>
547
     * &lt;/complexType>
548
     * </pre>
549
     * 
550
     * 
551
     */
552
    @XmlAccessorType(XmlAccessType.FIELD)
553
    @XmlType(name = "", propOrder = {
554
        "value"
555
    })
556
    public static class UnitCount {
557
 
558
        @XmlValue
559
        @XmlSchemaType(name = "positiveInteger")
560
        protected BigInteger value;
561
        @XmlAttribute(required = true)
562
        @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
563
        protected String unitOfMeasure;
564
 
565
        /**
566
         * Gets the value of the value property.
567
         * 
568
         * @return
569
         *     possible object is
570
         *     {@link BigInteger }
571
         *     
572
         */
573
        public BigInteger getValue() {
574
            return value;
575
        }
576
 
577
        /**
578
         * Sets the value of the value property.
579
         * 
580
         * @param value
581
         *     allowed object is
582
         *     {@link BigInteger }
583
         *     
584
         */
585
        public void setValue(BigInteger value) {
586
            this.value = value;
587
        }
588
 
589
        /**
590
         * Gets the value of the unitOfMeasure property.
591
         * 
592
         * @return
593
         *     possible object is
594
         *     {@link String }
595
         *     
596
         */
597
        public String getUnitOfMeasure() {
598
            return unitOfMeasure;
599
        }
600
 
601
        /**
602
         * Sets the value of the unitOfMeasure property.
603
         * 
604
         * @param value
605
         *     allowed object is
606
         *     {@link String }
607
         *     
608
         */
609
        public void setUnitOfMeasure(String value) {
610
            this.unitOfMeasure = value;
611
        }
612
 
613
    }
614
 
615
 
616
    /**
617
     * <p>Java class for anonymous complex type.
618
     * 
619
     * <p>The following schema fragment specifies the expected content contained within this class.
620
     * 
621
     * <pre>
622
     * &lt;complexType>
623
     *   &lt;complexContent>
624
     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
625
     *       &lt;sequence>
626
     *         &lt;element name="Parentage">
627
     *           &lt;simpleType>
628
     *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
629
     *               &lt;enumeration value="parent"/>
630
     *               &lt;enumeration value="child"/>
631
     *             &lt;/restriction>
632
     *           &lt;/simpleType>
633
     *         &lt;/element>
634
     *         &lt;element name="VariationTheme" minOccurs="0">
635
     *           &lt;simpleType>
636
     *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
637
     *               &lt;enumeration value="Size"/>
638
     *               &lt;enumeration value="Color"/>
639
     *               &lt;enumeration value="Flavor"/>
640
     *               &lt;enumeration value="Flavor-Size"/>
641
     *             &lt;/restriction>
642
     *           &lt;/simpleType>
643
     *         &lt;/element>
644
     *         &lt;element name="Size" type="{}StringNotNull" minOccurs="0"/>
645
     *         &lt;element name="Color" type="{}StringNotNull" minOccurs="0"/>
646
     *         &lt;element name="Flavor" type="{}StringNotNull" minOccurs="0"/>
647
     *       &lt;/sequence>
648
     *     &lt;/restriction>
649
     *   &lt;/complexContent>
650
     * &lt;/complexType>
651
     * </pre>
652
     * 
653
     * 
654
     */
655
    @XmlAccessorType(XmlAccessType.FIELD)
656
    @XmlType(name = "", propOrder = {
657
        "parentage",
658
        "variationTheme",
659
        "size",
660
        "color",
661
        "flavor"
662
    })
663
    public static class VariationData {
664
 
665
        @XmlElement(name = "Parentage", required = true)
666
        protected String parentage;
667
        @XmlElement(name = "VariationTheme")
668
        protected String variationTheme;
669
        @XmlElement(name = "Size")
670
        @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
671
        protected String size;
672
        @XmlElement(name = "Color")
673
        @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
674
        protected String color;
675
        @XmlElement(name = "Flavor")
676
        @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
677
        protected String flavor;
678
 
679
        /**
680
         * Gets the value of the parentage property.
681
         * 
682
         * @return
683
         *     possible object is
684
         *     {@link String }
685
         *     
686
         */
687
        public String getParentage() {
688
            return parentage;
689
        }
690
 
691
        /**
692
         * Sets the value of the parentage property.
693
         * 
694
         * @param value
695
         *     allowed object is
696
         *     {@link String }
697
         *     
698
         */
699
        public void setParentage(String value) {
700
            this.parentage = value;
701
        }
702
 
703
        /**
704
         * Gets the value of the variationTheme property.
705
         * 
706
         * @return
707
         *     possible object is
708
         *     {@link String }
709
         *     
710
         */
711
        public String getVariationTheme() {
712
            return variationTheme;
713
        }
714
 
715
        /**
716
         * Sets the value of the variationTheme property.
717
         * 
718
         * @param value
719
         *     allowed object is
720
         *     {@link String }
721
         *     
722
         */
723
        public void setVariationTheme(String value) {
724
            this.variationTheme = value;
725
        }
726
 
727
        /**
728
         * Gets the value of the size property.
729
         * 
730
         * @return
731
         *     possible object is
732
         *     {@link String }
733
         *     
734
         */
735
        public String getSize() {
736
            return size;
737
        }
738
 
739
        /**
740
         * Sets the value of the size property.
741
         * 
742
         * @param value
743
         *     allowed object is
744
         *     {@link String }
745
         *     
746
         */
747
        public void setSize(String value) {
748
            this.size = value;
749
        }
750
 
751
        /**
752
         * Gets the value of the color property.
753
         * 
754
         * @return
755
         *     possible object is
756
         *     {@link String }
757
         *     
758
         */
759
        public String getColor() {
760
            return color;
761
        }
762
 
763
        /**
764
         * Sets the value of the color property.
765
         * 
766
         * @param value
767
         *     allowed object is
768
         *     {@link String }
769
         *     
770
         */
771
        public void setColor(String value) {
772
            this.color = value;
773
        }
774
 
775
        /**
776
         * Gets the value of the flavor property.
777
         * 
778
         * @return
779
         *     possible object is
780
         *     {@link String }
781
         *     
782
         */
783
        public String getFlavor() {
784
            return flavor;
785
        }
786
 
787
        /**
788
         * Sets the value of the flavor property.
789
         * 
790
         * @param value
791
         *     allowed object is
792
         *     {@link String }
793
         *     
794
         */
795
        public void setFlavor(String value) {
796
            this.flavor = value;
797
        }
798
 
799
    }
800
 
801
}