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.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.XmlElement;
17
import javax.xml.bind.annotation.XmlRootElement;
18
import javax.xml.bind.annotation.XmlSchemaType;
19
import javax.xml.bind.annotation.XmlType;
20
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
21
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
22
 
23
 
24
/**
25
 * <p>Java class for anonymous complex type.
26
 * 
27
 * <p>The following schema fragment specifies the expected content contained within this class.
28
 * 
29
 * <pre>
30
 * &lt;complexType>
31
 *   &lt;complexContent>
32
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
33
 *       &lt;sequence>
34
 *         &lt;element name="BatteryChargeCycles" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" minOccurs="0"/>
35
 *         &lt;element name="CableLength" type="{}LengthDimension" minOccurs="0"/>
36
 *         &lt;element name="PowerSource" type="{}FortyStringNotNull" minOccurs="0"/>
37
 *         &lt;element name="WirelessTechnology" type="{}StringNotNull" maxOccurs="5" minOccurs="0"/>
38
 *         &lt;element ref="{}BatteryCellType" minOccurs="0"/>
39
 *         &lt;element ref="{}BatteryPower" minOccurs="0"/>
40
 *         &lt;element ref="{}Efficiency" minOccurs="0"/>
41
 *         &lt;element ref="{}FinishType" minOccurs="0"/>
42
 *         &lt;element ref="{}PowerPlugType" minOccurs="0"/>
43
 *         &lt;element ref="{}SurgeProtectionRating" minOccurs="0"/>
44
 *         &lt;element ref="{}TotalPowerOutlets" 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
    "batteryChargeCycles",
56
    "cableLength",
57
    "powerSource",
58
    "wirelessTechnology",
59
    "batteryCellType",
60
    "batteryPower",
61
    "efficiency",
62
    "finishType",
63
    "powerPlugType",
64
    "surgeProtectionRating",
65
    "totalPowerOutlets"
66
})
67
@XmlRootElement(name = "PowerSuppliesOrProtection")
68
public class PowerSuppliesOrProtection {
69
 
70
    @XmlElement(name = "BatteryChargeCycles")
71
    @XmlSchemaType(name = "positiveInteger")
72
    protected BigInteger batteryChargeCycles;
73
    @XmlElement(name = "CableLength")
74
    protected LengthDimension cableLength;
75
    @XmlElement(name = "PowerSource")
76
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
77
    protected String powerSource;
78
    @XmlElement(name = "WirelessTechnology")
79
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
80
    protected List<String> wirelessTechnology;
81
    @XmlElement(name = "BatteryCellType")
82
    protected BatteryCellTypeValues batteryCellType;
83
    @XmlElement(name = "BatteryPower")
84
    protected BatteryPowerIntegerDimension batteryPower;
85
    @XmlElement(name = "Efficiency")
86
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
87
    protected String efficiency;
88
    @XmlElement(name = "FinishType")
89
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
90
    protected String finishType;
91
    @XmlElement(name = "PowerPlugType")
92
    protected PowerPlugType powerPlugType;
93
    @XmlElement(name = "SurgeProtectionRating")
94
    protected EnergyRatingType surgeProtectionRating;
95
    @XmlElement(name = "TotalPowerOutlets")
96
    @XmlSchemaType(name = "positiveInteger")
97
    protected BigInteger totalPowerOutlets;
98
 
99
    /**
100
     * Gets the value of the batteryChargeCycles property.
101
     * 
102
     * @return
103
     *     possible object is
104
     *     {@link BigInteger }
105
     *     
106
     */
107
    public BigInteger getBatteryChargeCycles() {
108
        return batteryChargeCycles;
109
    }
110
 
111
    /**
112
     * Sets the value of the batteryChargeCycles property.
113
     * 
114
     * @param value
115
     *     allowed object is
116
     *     {@link BigInteger }
117
     *     
118
     */
119
    public void setBatteryChargeCycles(BigInteger value) {
120
        this.batteryChargeCycles = value;
121
    }
122
 
123
    /**
124
     * Gets the value of the cableLength property.
125
     * 
126
     * @return
127
     *     possible object is
128
     *     {@link LengthDimension }
129
     *     
130
     */
131
    public LengthDimension getCableLength() {
132
        return cableLength;
133
    }
134
 
135
    /**
136
     * Sets the value of the cableLength property.
137
     * 
138
     * @param value
139
     *     allowed object is
140
     *     {@link LengthDimension }
141
     *     
142
     */
143
    public void setCableLength(LengthDimension value) {
144
        this.cableLength = value;
145
    }
146
 
147
    /**
148
     * Gets the value of the powerSource property.
149
     * 
150
     * @return
151
     *     possible object is
152
     *     {@link String }
153
     *     
154
     */
155
    public String getPowerSource() {
156
        return powerSource;
157
    }
158
 
159
    /**
160
     * Sets the value of the powerSource property.
161
     * 
162
     * @param value
163
     *     allowed object is
164
     *     {@link String }
165
     *     
166
     */
167
    public void setPowerSource(String value) {
168
        this.powerSource = value;
169
    }
170
 
171
    /**
172
     * Gets the value of the wirelessTechnology property.
173
     * 
174
     * <p>
175
     * This accessor method returns a reference to the live list,
176
     * not a snapshot. Therefore any modification you make to the
177
     * returned list will be present inside the JAXB object.
178
     * This is why there is not a <CODE>set</CODE> method for the wirelessTechnology property.
179
     * 
180
     * <p>
181
     * For example, to add a new item, do as follows:
182
     * <pre>
183
     *    getWirelessTechnology().add(newItem);
184
     * </pre>
185
     * 
186
     * 
187
     * <p>
188
     * Objects of the following type(s) are allowed in the list
189
     * {@link String }
190
     * 
191
     * 
192
     */
193
    public List<String> getWirelessTechnology() {
194
        if (wirelessTechnology == null) {
195
            wirelessTechnology = new ArrayList<String>();
196
        }
197
        return this.wirelessTechnology;
198
    }
199
 
200
    /**
201
     * Gets the value of the batteryCellType property.
202
     * 
203
     * @return
204
     *     possible object is
205
     *     {@link BatteryCellTypeValues }
206
     *     
207
     */
208
    public BatteryCellTypeValues getBatteryCellType() {
209
        return batteryCellType;
210
    }
211
 
212
    /**
213
     * Sets the value of the batteryCellType property.
214
     * 
215
     * @param value
216
     *     allowed object is
217
     *     {@link BatteryCellTypeValues }
218
     *     
219
     */
220
    public void setBatteryCellType(BatteryCellTypeValues value) {
221
        this.batteryCellType = value;
222
    }
223
 
224
    /**
225
     * Gets the value of the batteryPower property.
226
     * 
227
     * @return
228
     *     possible object is
229
     *     {@link BatteryPowerIntegerDimension }
230
     *     
231
     */
232
    public BatteryPowerIntegerDimension getBatteryPower() {
233
        return batteryPower;
234
    }
235
 
236
    /**
237
     * Sets the value of the batteryPower property.
238
     * 
239
     * @param value
240
     *     allowed object is
241
     *     {@link BatteryPowerIntegerDimension }
242
     *     
243
     */
244
    public void setBatteryPower(BatteryPowerIntegerDimension value) {
245
        this.batteryPower = value;
246
    }
247
 
248
    /**
249
     * Gets the value of the efficiency property.
250
     * 
251
     * @return
252
     *     possible object is
253
     *     {@link String }
254
     *     
255
     */
256
    public String getEfficiency() {
257
        return efficiency;
258
    }
259
 
260
    /**
261
     * Sets the value of the efficiency property.
262
     * 
263
     * @param value
264
     *     allowed object is
265
     *     {@link String }
266
     *     
267
     */
268
    public void setEfficiency(String value) {
269
        this.efficiency = value;
270
    }
271
 
272
    /**
273
     * Gets the value of the finishType property.
274
     * 
275
     * @return
276
     *     possible object is
277
     *     {@link String }
278
     *     
279
     */
280
    public String getFinishType() {
281
        return finishType;
282
    }
283
 
284
    /**
285
     * Sets the value of the finishType property.
286
     * 
287
     * @param value
288
     *     allowed object is
289
     *     {@link String }
290
     *     
291
     */
292
    public void setFinishType(String value) {
293
        this.finishType = value;
294
    }
295
 
296
    /**
297
     * Gets the value of the powerPlugType property.
298
     * 
299
     * @return
300
     *     possible object is
301
     *     {@link PowerPlugType }
302
     *     
303
     */
304
    public PowerPlugType getPowerPlugType() {
305
        return powerPlugType;
306
    }
307
 
308
    /**
309
     * Sets the value of the powerPlugType property.
310
     * 
311
     * @param value
312
     *     allowed object is
313
     *     {@link PowerPlugType }
314
     *     
315
     */
316
    public void setPowerPlugType(PowerPlugType value) {
317
        this.powerPlugType = value;
318
    }
319
 
320
    /**
321
     * Gets the value of the surgeProtectionRating property.
322
     * 
323
     * @return
324
     *     possible object is
325
     *     {@link EnergyRatingType }
326
     *     
327
     */
328
    public EnergyRatingType getSurgeProtectionRating() {
329
        return surgeProtectionRating;
330
    }
331
 
332
    /**
333
     * Sets the value of the surgeProtectionRating property.
334
     * 
335
     * @param value
336
     *     allowed object is
337
     *     {@link EnergyRatingType }
338
     *     
339
     */
340
    public void setSurgeProtectionRating(EnergyRatingType value) {
341
        this.surgeProtectionRating = value;
342
    }
343
 
344
    /**
345
     * Gets the value of the totalPowerOutlets property.
346
     * 
347
     * @return
348
     *     possible object is
349
     *     {@link BigInteger }
350
     *     
351
     */
352
    public BigInteger getTotalPowerOutlets() {
353
        return totalPowerOutlets;
354
    }
355
 
356
    /**
357
     * Sets the value of the totalPowerOutlets property.
358
     * 
359
     * @param value
360
     *     allowed object is
361
     *     {@link BigInteger }
362
     *     
363
     */
364
    public void setTotalPowerOutlets(BigInteger value) {
365
        this.totalPowerOutlets = value;
366
    }
367
 
368
}