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 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="ProductType">
29
 *           &lt;complexType>
30
 *             &lt;complexContent>
31
 *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
32
 *                 &lt;choice>
33
 *                   &lt;element ref="{}Food"/>
34
 *                   &lt;element ref="{}HouseholdSupplies"/>
35
 *                   &lt;element ref="{}Beverages"/>
36
 *                   &lt;element ref="{}HardLiquor"/>
37
 *                   &lt;element ref="{}AlcoholicBeverages"/>
38
 *                   &lt;element ref="{}Wine"/>
39
 *                 &lt;/choice>
40
 *               &lt;/restriction>
41
 *             &lt;/complexContent>
42
 *           &lt;/complexType>
43
 *         &lt;/element>
44
 *       &lt;/sequence>
45
 *     &lt;/restriction>
46
 *   &lt;/complexContent>
47
 * &lt;/complexType>
48
 * </pre>
49
 * 
50
 * 
51
 */
52
@XmlAccessorType(XmlAccessType.FIELD)
53
@XmlType(name = "", propOrder = {
54
    "productType"
55
})
56
@XmlRootElement(name = "FoodAndBeverages")
57
public class FoodAndBeverages {
58
 
59
    @XmlElement(name = "ProductType", required = true)
60
    protected FoodAndBeverages.ProductType productType;
61
 
62
    /**
63
     * Gets the value of the productType property.
64
     * 
65
     * @return
66
     *     possible object is
67
     *     {@link FoodAndBeverages.ProductType }
68
     *     
69
     */
70
    public FoodAndBeverages.ProductType getProductType() {
71
        return productType;
72
    }
73
 
74
    /**
75
     * Sets the value of the productType property.
76
     * 
77
     * @param value
78
     *     allowed object is
79
     *     {@link FoodAndBeverages.ProductType }
80
     *     
81
     */
82
    public void setProductType(FoodAndBeverages.ProductType value) {
83
        this.productType = value;
84
    }
85
 
86
 
87
    /**
88
     * <p>Java class for anonymous complex type.
89
     * 
90
     * <p>The following schema fragment specifies the expected content contained within this class.
91
     * 
92
     * <pre>
93
     * &lt;complexType>
94
     *   &lt;complexContent>
95
     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
96
     *       &lt;choice>
97
     *         &lt;element ref="{}Food"/>
98
     *         &lt;element ref="{}HouseholdSupplies"/>
99
     *         &lt;element ref="{}Beverages"/>
100
     *         &lt;element ref="{}HardLiquor"/>
101
     *         &lt;element ref="{}AlcoholicBeverages"/>
102
     *         &lt;element ref="{}Wine"/>
103
     *       &lt;/choice>
104
     *     &lt;/restriction>
105
     *   &lt;/complexContent>
106
     * &lt;/complexType>
107
     * </pre>
108
     * 
109
     * 
110
     */
111
    @XmlAccessorType(XmlAccessType.FIELD)
112
    @XmlType(name = "", propOrder = {
113
        "food",
114
        "householdSupplies",
115
        "beverages",
116
        "hardLiquor",
117
        "alcoholicBeverages",
118
        "wine"
119
    })
120
    public static class ProductType {
121
 
122
        @XmlElement(name = "Food")
123
        protected Food food;
124
        @XmlElement(name = "HouseholdSupplies")
125
        protected HouseholdSupplies householdSupplies;
126
        @XmlElement(name = "Beverages")
127
        protected Beverages beverages;
128
        @XmlElement(name = "HardLiquor")
129
        protected HardLiquor hardLiquor;
130
        @XmlElement(name = "AlcoholicBeverages")
131
        protected AlcoholicBeverages alcoholicBeverages;
132
        @XmlElement(name = "Wine")
133
        protected Wine wine;
134
 
135
        /**
136
         * Gets the value of the food property.
137
         * 
138
         * @return
139
         *     possible object is
140
         *     {@link Food }
141
         *     
142
         */
143
        public Food getFood() {
144
            return food;
145
        }
146
 
147
        /**
148
         * Sets the value of the food property.
149
         * 
150
         * @param value
151
         *     allowed object is
152
         *     {@link Food }
153
         *     
154
         */
155
        public void setFood(Food value) {
156
            this.food = value;
157
        }
158
 
159
        /**
160
         * Gets the value of the householdSupplies property.
161
         * 
162
         * @return
163
         *     possible object is
164
         *     {@link HouseholdSupplies }
165
         *     
166
         */
167
        public HouseholdSupplies getHouseholdSupplies() {
168
            return householdSupplies;
169
        }
170
 
171
        /**
172
         * Sets the value of the householdSupplies property.
173
         * 
174
         * @param value
175
         *     allowed object is
176
         *     {@link HouseholdSupplies }
177
         *     
178
         */
179
        public void setHouseholdSupplies(HouseholdSupplies value) {
180
            this.householdSupplies = value;
181
        }
182
 
183
        /**
184
         * Gets the value of the beverages property.
185
         * 
186
         * @return
187
         *     possible object is
188
         *     {@link Beverages }
189
         *     
190
         */
191
        public Beverages getBeverages() {
192
            return beverages;
193
        }
194
 
195
        /**
196
         * Sets the value of the beverages property.
197
         * 
198
         * @param value
199
         *     allowed object is
200
         *     {@link Beverages }
201
         *     
202
         */
203
        public void setBeverages(Beverages value) {
204
            this.beverages = value;
205
        }
206
 
207
        /**
208
         * Gets the value of the hardLiquor property.
209
         * 
210
         * @return
211
         *     possible object is
212
         *     {@link HardLiquor }
213
         *     
214
         */
215
        public HardLiquor getHardLiquor() {
216
            return hardLiquor;
217
        }
218
 
219
        /**
220
         * Sets the value of the hardLiquor property.
221
         * 
222
         * @param value
223
         *     allowed object is
224
         *     {@link HardLiquor }
225
         *     
226
         */
227
        public void setHardLiquor(HardLiquor value) {
228
            this.hardLiquor = value;
229
        }
230
 
231
        /**
232
         * Gets the value of the alcoholicBeverages property.
233
         * 
234
         * @return
235
         *     possible object is
236
         *     {@link AlcoholicBeverages }
237
         *     
238
         */
239
        public AlcoholicBeverages getAlcoholicBeverages() {
240
            return alcoholicBeverages;
241
        }
242
 
243
        /**
244
         * Sets the value of the alcoholicBeverages property.
245
         * 
246
         * @param value
247
         *     allowed object is
248
         *     {@link AlcoholicBeverages }
249
         *     
250
         */
251
        public void setAlcoholicBeverages(AlcoholicBeverages value) {
252
            this.alcoholicBeverages = value;
253
        }
254
 
255
        /**
256
         * Gets the value of the wine property.
257
         * 
258
         * @return
259
         *     possible object is
260
         *     {@link Wine }
261
         *     
262
         */
263
        public Wine getWine() {
264
            return wine;
265
        }
266
 
267
        /**
268
         * Sets the value of the wine property.
269
         * 
270
         * @param value
271
         *     allowed object is
272
         *     {@link Wine }
273
         *     
274
         */
275
        public void setWine(Wine value) {
276
            this.wine = value;
277
        }
278
 
279
    }
280
 
281
}