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 java.math.BigDecimal;
12
import java.math.BigInteger;
13
import javax.xml.bind.annotation.XmlAccessType;
14
import javax.xml.bind.annotation.XmlAccessorType;
15
import javax.xml.bind.annotation.XmlElement;
16
import javax.xml.bind.annotation.XmlRootElement;
17
import javax.xml.bind.annotation.XmlType;
18
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
19
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
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 ref="{}VariationData" minOccurs="0"/>
33
 *         &lt;element ref="{}BuiltInMicrophone" minOccurs="0"/>
34
 *         &lt;element ref="{}CameraType" minOccurs="0"/>
35
 *         &lt;element ref="{}DigitalStillResolution" minOccurs="0"/>
36
 *         &lt;element ref="{}ImageSensor" minOccurs="0"/>
37
 *         &lt;element ref="{}InputType" minOccurs="0"/>
38
 *         &lt;element ref="{}MaxWebcamImageResolution" minOccurs="0"/>
39
 *         &lt;element ref="{}MinimumSystemRequirements" minOccurs="0"/>
40
 *         &lt;element ref="{}ModelNumber" minOccurs="0"/>
41
 *         &lt;element ref="{}NetworkingProtocol" minOccurs="0"/>
42
 *         &lt;element ref="{}VideoCallingResolution" minOccurs="0"/>
43
 *         &lt;element ref="{}Voltage" minOccurs="0"/>
44
 *         &lt;element ref="{}Wattage" minOccurs="0"/>
45
 *         &lt;element ref="{}WebcamVideoCaptureResolution" minOccurs="0"/>
46
 *         &lt;element ref="{}WirelessStandard" minOccurs="0"/>
47
 *       &lt;/sequence>
48
 *     &lt;/restriction>
49
 *   &lt;/complexContent>
50
 * &lt;/complexType>
51
 * </pre>
52
 * 
53
 * 
54
 */
55
@XmlAccessorType(XmlAccessType.FIELD)
56
@XmlType(name = "", propOrder = {
57
    "variationData",
58
    "builtInMicrophone",
59
    "cameraType",
60
    "digitalStillResolution",
61
    "imageSensor",
62
    "inputType",
63
    "maxWebcamImageResolution",
64
    "minimumSystemRequirements",
65
    "modelNumber",
66
    "networkingProtocol",
67
    "videoCallingResolution",
68
    "voltage",
69
    "wattage",
70
    "webcamVideoCaptureResolution",
71
    "wirelessStandard"
72
})
73
@XmlRootElement(name = "Webcam")
74
public class Webcam {
75
 
76
    @XmlElement(name = "VariationData")
77
    protected VariationData variationData;
78
    @XmlElement(name = "BuiltInMicrophone")
79
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
80
    protected String builtInMicrophone;
81
    @XmlElement(name = "CameraType")
82
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
83
    protected String cameraType;
84
    @XmlElement(name = "DigitalStillResolution")
85
    protected ResolutionFiveDigitDimension digitalStillResolution;
86
    @XmlElement(name = "ImageSensor")
87
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
88
    protected String imageSensor;
89
    @XmlElement(name = "InputType")
90
    protected InputTypeValues inputType;
91
    @XmlElement(name = "MaxWebcamImageResolution")
92
    protected ResolutionFiveDigitDimension maxWebcamImageResolution;
93
    @XmlElement(name = "MinimumSystemRequirements")
94
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
95
    protected String minimumSystemRequirements;
96
    @XmlElement(name = "ModelNumber")
97
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
98
    protected String modelNumber;
99
    @XmlElement(name = "NetworkingProtocol")
100
    protected String networkingProtocol;
101
    @XmlElement(name = "VideoCallingResolution")
102
    protected ResolutionFiveDigitDimension videoCallingResolution;
103
    @XmlElement(name = "Voltage")
104
    protected BigDecimal voltage;
105
    @XmlElement(name = "Wattage")
106
    protected BigInteger wattage;
107
    @XmlElement(name = "WebcamVideoCaptureResolution")
108
    protected ResolutionFiveDigitDimension webcamVideoCaptureResolution;
109
    @XmlElement(name = "WirelessStandard")
110
    protected String wirelessStandard;
111
 
112
    /**
113
     * Gets the value of the variationData property.
114
     * 
115
     * @return
116
     *     possible object is
117
     *     {@link VariationData }
118
     *     
119
     */
120
    public VariationData getVariationData() {
121
        return variationData;
122
    }
123
 
124
    /**
125
     * Sets the value of the variationData property.
126
     * 
127
     * @param value
128
     *     allowed object is
129
     *     {@link VariationData }
130
     *     
131
     */
132
    public void setVariationData(VariationData value) {
133
        this.variationData = value;
134
    }
135
 
136
    /**
137
     * Gets the value of the builtInMicrophone property.
138
     * 
139
     * @return
140
     *     possible object is
141
     *     {@link String }
142
     *     
143
     */
144
    public String getBuiltInMicrophone() {
145
        return builtInMicrophone;
146
    }
147
 
148
    /**
149
     * Sets the value of the builtInMicrophone property.
150
     * 
151
     * @param value
152
     *     allowed object is
153
     *     {@link String }
154
     *     
155
     */
156
    public void setBuiltInMicrophone(String value) {
157
        this.builtInMicrophone = value;
158
    }
159
 
160
    /**
161
     * Gets the value of the cameraType property.
162
     * 
163
     * @return
164
     *     possible object is
165
     *     {@link String }
166
     *     
167
     */
168
    public String getCameraType() {
169
        return cameraType;
170
    }
171
 
172
    /**
173
     * Sets the value of the cameraType property.
174
     * 
175
     * @param value
176
     *     allowed object is
177
     *     {@link String }
178
     *     
179
     */
180
    public void setCameraType(String value) {
181
        this.cameraType = value;
182
    }
183
 
184
    /**
185
     * Gets the value of the digitalStillResolution property.
186
     * 
187
     * @return
188
     *     possible object is
189
     *     {@link ResolutionFiveDigitDimension }
190
     *     
191
     */
192
    public ResolutionFiveDigitDimension getDigitalStillResolution() {
193
        return digitalStillResolution;
194
    }
195
 
196
    /**
197
     * Sets the value of the digitalStillResolution property.
198
     * 
199
     * @param value
200
     *     allowed object is
201
     *     {@link ResolutionFiveDigitDimension }
202
     *     
203
     */
204
    public void setDigitalStillResolution(ResolutionFiveDigitDimension value) {
205
        this.digitalStillResolution = value;
206
    }
207
 
208
    /**
209
     * Gets the value of the imageSensor property.
210
     * 
211
     * @return
212
     *     possible object is
213
     *     {@link String }
214
     *     
215
     */
216
    public String getImageSensor() {
217
        return imageSensor;
218
    }
219
 
220
    /**
221
     * Sets the value of the imageSensor property.
222
     * 
223
     * @param value
224
     *     allowed object is
225
     *     {@link String }
226
     *     
227
     */
228
    public void setImageSensor(String value) {
229
        this.imageSensor = value;
230
    }
231
 
232
    /**
233
     * Gets the value of the inputType property.
234
     * 
235
     * @return
236
     *     possible object is
237
     *     {@link InputTypeValues }
238
     *     
239
     */
240
    public InputTypeValues getInputType() {
241
        return inputType;
242
    }
243
 
244
    /**
245
     * Sets the value of the inputType property.
246
     * 
247
     * @param value
248
     *     allowed object is
249
     *     {@link InputTypeValues }
250
     *     
251
     */
252
    public void setInputType(InputTypeValues value) {
253
        this.inputType = value;
254
    }
255
 
256
    /**
257
     * Gets the value of the maxWebcamImageResolution property.
258
     * 
259
     * @return
260
     *     possible object is
261
     *     {@link ResolutionFiveDigitDimension }
262
     *     
263
     */
264
    public ResolutionFiveDigitDimension getMaxWebcamImageResolution() {
265
        return maxWebcamImageResolution;
266
    }
267
 
268
    /**
269
     * Sets the value of the maxWebcamImageResolution property.
270
     * 
271
     * @param value
272
     *     allowed object is
273
     *     {@link ResolutionFiveDigitDimension }
274
     *     
275
     */
276
    public void setMaxWebcamImageResolution(ResolutionFiveDigitDimension value) {
277
        this.maxWebcamImageResolution = value;
278
    }
279
 
280
    /**
281
     * Gets the value of the minimumSystemRequirements property.
282
     * 
283
     * @return
284
     *     possible object is
285
     *     {@link String }
286
     *     
287
     */
288
    public String getMinimumSystemRequirements() {
289
        return minimumSystemRequirements;
290
    }
291
 
292
    /**
293
     * Sets the value of the minimumSystemRequirements property.
294
     * 
295
     * @param value
296
     *     allowed object is
297
     *     {@link String }
298
     *     
299
     */
300
    public void setMinimumSystemRequirements(String value) {
301
        this.minimumSystemRequirements = value;
302
    }
303
 
304
    /**
305
     * Gets the value of the modelNumber property.
306
     * 
307
     * @return
308
     *     possible object is
309
     *     {@link String }
310
     *     
311
     */
312
    public String getModelNumber() {
313
        return modelNumber;
314
    }
315
 
316
    /**
317
     * Sets the value of the modelNumber property.
318
     * 
319
     * @param value
320
     *     allowed object is
321
     *     {@link String }
322
     *     
323
     */
324
    public void setModelNumber(String value) {
325
        this.modelNumber = value;
326
    }
327
 
328
    /**
329
     * Gets the value of the networkingProtocol property.
330
     * 
331
     * @return
332
     *     possible object is
333
     *     {@link String }
334
     *     
335
     */
336
    public String getNetworkingProtocol() {
337
        return networkingProtocol;
338
    }
339
 
340
    /**
341
     * Sets the value of the networkingProtocol property.
342
     * 
343
     * @param value
344
     *     allowed object is
345
     *     {@link String }
346
     *     
347
     */
348
    public void setNetworkingProtocol(String value) {
349
        this.networkingProtocol = value;
350
    }
351
 
352
    /**
353
     * Gets the value of the videoCallingResolution property.
354
     * 
355
     * @return
356
     *     possible object is
357
     *     {@link ResolutionFiveDigitDimension }
358
     *     
359
     */
360
    public ResolutionFiveDigitDimension getVideoCallingResolution() {
361
        return videoCallingResolution;
362
    }
363
 
364
    /**
365
     * Sets the value of the videoCallingResolution property.
366
     * 
367
     * @param value
368
     *     allowed object is
369
     *     {@link ResolutionFiveDigitDimension }
370
     *     
371
     */
372
    public void setVideoCallingResolution(ResolutionFiveDigitDimension value) {
373
        this.videoCallingResolution = value;
374
    }
375
 
376
    /**
377
     * Gets the value of the voltage property.
378
     * 
379
     * @return
380
     *     possible object is
381
     *     {@link BigDecimal }
382
     *     
383
     */
384
    public BigDecimal getVoltage() {
385
        return voltage;
386
    }
387
 
388
    /**
389
     * Sets the value of the voltage property.
390
     * 
391
     * @param value
392
     *     allowed object is
393
     *     {@link BigDecimal }
394
     *     
395
     */
396
    public void setVoltage(BigDecimal value) {
397
        this.voltage = value;
398
    }
399
 
400
    /**
401
     * Gets the value of the wattage property.
402
     * 
403
     * @return
404
     *     possible object is
405
     *     {@link BigInteger }
406
     *     
407
     */
408
    public BigInteger getWattage() {
409
        return wattage;
410
    }
411
 
412
    /**
413
     * Sets the value of the wattage property.
414
     * 
415
     * @param value
416
     *     allowed object is
417
     *     {@link BigInteger }
418
     *     
419
     */
420
    public void setWattage(BigInteger value) {
421
        this.wattage = value;
422
    }
423
 
424
    /**
425
     * Gets the value of the webcamVideoCaptureResolution property.
426
     * 
427
     * @return
428
     *     possible object is
429
     *     {@link ResolutionFiveDigitDimension }
430
     *     
431
     */
432
    public ResolutionFiveDigitDimension getWebcamVideoCaptureResolution() {
433
        return webcamVideoCaptureResolution;
434
    }
435
 
436
    /**
437
     * Sets the value of the webcamVideoCaptureResolution property.
438
     * 
439
     * @param value
440
     *     allowed object is
441
     *     {@link ResolutionFiveDigitDimension }
442
     *     
443
     */
444
    public void setWebcamVideoCaptureResolution(ResolutionFiveDigitDimension value) {
445
        this.webcamVideoCaptureResolution = value;
446
    }
447
 
448
    /**
449
     * Gets the value of the wirelessStandard property.
450
     * 
451
     * @return
452
     *     possible object is
453
     *     {@link String }
454
     *     
455
     */
456
    public String getWirelessStandard() {
457
        return wirelessStandard;
458
    }
459
 
460
    /**
461
     * Sets the value of the wirelessStandard property.
462
     * 
463
     * @param value
464
     *     allowed object is
465
     *     {@link String }
466
     *     
467
     */
468
    public void setWirelessStandard(String value) {
469
        this.wirelessStandard = value;
470
    }
471
 
472
}