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
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
17
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
18
 
19
 
20
/**
21
 * <p>Java class for anonymous complex type.
22
 * 
23
 * <p>The following schema fragment specifies the expected content contained within this class.
24
 * 
25
 * <pre>
26
 * &lt;complexType>
27
 *   &lt;complexContent>
28
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29
 *       &lt;sequence>
30
 *         &lt;element ref="{}FulfillmentCenterID"/>
31
 *         &lt;element name="SupportsInStorePickup" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
32
 *         &lt;element name="OperatingHours">
33
 *           &lt;complexType>
34
 *             &lt;complexContent>
35
 *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
36
 *                 &lt;sequence>
37
 *                   &lt;element name="Monday" type="{}OperatingHoursBase" minOccurs="0"/>
38
 *                   &lt;element name="Tuesday" type="{}OperatingHoursBase" minOccurs="0"/>
39
 *                   &lt;element name="Wednesday" type="{}OperatingHoursBase" minOccurs="0"/>
40
 *                   &lt;element name="Thursday" type="{}OperatingHoursBase" minOccurs="0"/>
41
 *                   &lt;element name="Friday" type="{}OperatingHoursBase" minOccurs="0"/>
42
 *                   &lt;element name="Saturday" type="{}OperatingHoursBase" minOccurs="0"/>
43
 *                   &lt;element name="Sunday" type="{}OperatingHoursBase" minOccurs="0"/>
44
 *                 &lt;/sequence>
45
 *               &lt;/restriction>
46
 *             &lt;/complexContent>
47
 *           &lt;/complexType>
48
 *         &lt;/element>
49
 *       &lt;/sequence>
50
 *     &lt;/restriction>
51
 *   &lt;/complexContent>
52
 * &lt;/complexType>
53
 * </pre>
54
 * 
55
 * 
56
 */
57
@XmlAccessorType(XmlAccessType.FIELD)
58
@XmlType(name = "", propOrder = {
59
    "fulfillmentCenterID",
60
    "supportsInStorePickup",
61
    "operatingHours"
62
})
63
@XmlRootElement(name = "FulfillmentCenter")
64
public class FulfillmentCenter {
65
 
66
    @XmlElement(name = "FulfillmentCenterID", required = true)
67
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
68
    protected String fulfillmentCenterID;
69
    @XmlElement(name = "SupportsInStorePickup")
70
    protected boolean supportsInStorePickup;
71
    @XmlElement(name = "OperatingHours", required = true)
72
    protected FulfillmentCenter.OperatingHours operatingHours;
73
 
74
    /**
75
     * Gets the value of the fulfillmentCenterID property.
76
     * 
77
     * @return
78
     *     possible object is
79
     *     {@link String }
80
     *     
81
     */
82
    public String getFulfillmentCenterID() {
83
        return fulfillmentCenterID;
84
    }
85
 
86
    /**
87
     * Sets the value of the fulfillmentCenterID property.
88
     * 
89
     * @param value
90
     *     allowed object is
91
     *     {@link String }
92
     *     
93
     */
94
    public void setFulfillmentCenterID(String value) {
95
        this.fulfillmentCenterID = value;
96
    }
97
 
98
    /**
99
     * Gets the value of the supportsInStorePickup property.
100
     * 
101
     */
102
    public boolean isSupportsInStorePickup() {
103
        return supportsInStorePickup;
104
    }
105
 
106
    /**
107
     * Sets the value of the supportsInStorePickup property.
108
     * 
109
     */
110
    public void setSupportsInStorePickup(boolean value) {
111
        this.supportsInStorePickup = value;
112
    }
113
 
114
    /**
115
     * Gets the value of the operatingHours property.
116
     * 
117
     * @return
118
     *     possible object is
119
     *     {@link FulfillmentCenter.OperatingHours }
120
     *     
121
     */
122
    public FulfillmentCenter.OperatingHours getOperatingHours() {
123
        return operatingHours;
124
    }
125
 
126
    /**
127
     * Sets the value of the operatingHours property.
128
     * 
129
     * @param value
130
     *     allowed object is
131
     *     {@link FulfillmentCenter.OperatingHours }
132
     *     
133
     */
134
    public void setOperatingHours(FulfillmentCenter.OperatingHours value) {
135
        this.operatingHours = value;
136
    }
137
 
138
 
139
    /**
140
     * <p>Java class for anonymous complex type.
141
     * 
142
     * <p>The following schema fragment specifies the expected content contained within this class.
143
     * 
144
     * <pre>
145
     * &lt;complexType>
146
     *   &lt;complexContent>
147
     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
148
     *       &lt;sequence>
149
     *         &lt;element name="Monday" type="{}OperatingHoursBase" minOccurs="0"/>
150
     *         &lt;element name="Tuesday" type="{}OperatingHoursBase" minOccurs="0"/>
151
     *         &lt;element name="Wednesday" type="{}OperatingHoursBase" minOccurs="0"/>
152
     *         &lt;element name="Thursday" type="{}OperatingHoursBase" minOccurs="0"/>
153
     *         &lt;element name="Friday" type="{}OperatingHoursBase" minOccurs="0"/>
154
     *         &lt;element name="Saturday" type="{}OperatingHoursBase" minOccurs="0"/>
155
     *         &lt;element name="Sunday" type="{}OperatingHoursBase" minOccurs="0"/>
156
     *       &lt;/sequence>
157
     *     &lt;/restriction>
158
     *   &lt;/complexContent>
159
     * &lt;/complexType>
160
     * </pre>
161
     * 
162
     * 
163
     */
164
    @XmlAccessorType(XmlAccessType.FIELD)
165
    @XmlType(name = "", propOrder = {
166
        "monday",
167
        "tuesday",
168
        "wednesday",
169
        "thursday",
170
        "friday",
171
        "saturday",
172
        "sunday"
173
    })
174
    public static class OperatingHours {
175
 
176
        @XmlElement(name = "Monday")
177
        protected OperatingHoursBase monday;
178
        @XmlElement(name = "Tuesday")
179
        protected OperatingHoursBase tuesday;
180
        @XmlElement(name = "Wednesday")
181
        protected OperatingHoursBase wednesday;
182
        @XmlElement(name = "Thursday")
183
        protected OperatingHoursBase thursday;
184
        @XmlElement(name = "Friday")
185
        protected OperatingHoursBase friday;
186
        @XmlElement(name = "Saturday")
187
        protected OperatingHoursBase saturday;
188
        @XmlElement(name = "Sunday")
189
        protected OperatingHoursBase sunday;
190
 
191
        /**
192
         * Gets the value of the monday property.
193
         * 
194
         * @return
195
         *     possible object is
196
         *     {@link OperatingHoursBase }
197
         *     
198
         */
199
        public OperatingHoursBase getMonday() {
200
            return monday;
201
        }
202
 
203
        /**
204
         * Sets the value of the monday property.
205
         * 
206
         * @param value
207
         *     allowed object is
208
         *     {@link OperatingHoursBase }
209
         *     
210
         */
211
        public void setMonday(OperatingHoursBase value) {
212
            this.monday = value;
213
        }
214
 
215
        /**
216
         * Gets the value of the tuesday property.
217
         * 
218
         * @return
219
         *     possible object is
220
         *     {@link OperatingHoursBase }
221
         *     
222
         */
223
        public OperatingHoursBase getTuesday() {
224
            return tuesday;
225
        }
226
 
227
        /**
228
         * Sets the value of the tuesday property.
229
         * 
230
         * @param value
231
         *     allowed object is
232
         *     {@link OperatingHoursBase }
233
         *     
234
         */
235
        public void setTuesday(OperatingHoursBase value) {
236
            this.tuesday = value;
237
        }
238
 
239
        /**
240
         * Gets the value of the wednesday property.
241
         * 
242
         * @return
243
         *     possible object is
244
         *     {@link OperatingHoursBase }
245
         *     
246
         */
247
        public OperatingHoursBase getWednesday() {
248
            return wednesday;
249
        }
250
 
251
        /**
252
         * Sets the value of the wednesday property.
253
         * 
254
         * @param value
255
         *     allowed object is
256
         *     {@link OperatingHoursBase }
257
         *     
258
         */
259
        public void setWednesday(OperatingHoursBase value) {
260
            this.wednesday = value;
261
        }
262
 
263
        /**
264
         * Gets the value of the thursday property.
265
         * 
266
         * @return
267
         *     possible object is
268
         *     {@link OperatingHoursBase }
269
         *     
270
         */
271
        public OperatingHoursBase getThursday() {
272
            return thursday;
273
        }
274
 
275
        /**
276
         * Sets the value of the thursday property.
277
         * 
278
         * @param value
279
         *     allowed object is
280
         *     {@link OperatingHoursBase }
281
         *     
282
         */
283
        public void setThursday(OperatingHoursBase value) {
284
            this.thursday = value;
285
        }
286
 
287
        /**
288
         * Gets the value of the friday property.
289
         * 
290
         * @return
291
         *     possible object is
292
         *     {@link OperatingHoursBase }
293
         *     
294
         */
295
        public OperatingHoursBase getFriday() {
296
            return friday;
297
        }
298
 
299
        /**
300
         * Sets the value of the friday property.
301
         * 
302
         * @param value
303
         *     allowed object is
304
         *     {@link OperatingHoursBase }
305
         *     
306
         */
307
        public void setFriday(OperatingHoursBase value) {
308
            this.friday = value;
309
        }
310
 
311
        /**
312
         * Gets the value of the saturday property.
313
         * 
314
         * @return
315
         *     possible object is
316
         *     {@link OperatingHoursBase }
317
         *     
318
         */
319
        public OperatingHoursBase getSaturday() {
320
            return saturday;
321
        }
322
 
323
        /**
324
         * Sets the value of the saturday property.
325
         * 
326
         * @param value
327
         *     allowed object is
328
         *     {@link OperatingHoursBase }
329
         *     
330
         */
331
        public void setSaturday(OperatingHoursBase value) {
332
            this.saturday = value;
333
        }
334
 
335
        /**
336
         * Gets the value of the sunday property.
337
         * 
338
         * @return
339
         *     possible object is
340
         *     {@link OperatingHoursBase }
341
         *     
342
         */
343
        public OperatingHoursBase getSunday() {
344
            return sunday;
345
        }
346
 
347
        /**
348
         * Sets the value of the sunday property.
349
         * 
350
         * @param value
351
         *     allowed object is
352
         *     {@link OperatingHoursBase }
353
         *     
354
         */
355
        public void setSunday(OperatingHoursBase value) {
356
            this.sunday = value;
357
        }
358
 
359
    }
360
 
361
}