Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7480 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.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 ref="{}AnalogRGBInput" maxOccurs="5" minOccurs="0"/>
35
 *         &lt;element ref="{}BatteryCellType" minOccurs="0"/>
36
 *         &lt;element name="BatteryChargeCycles" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" minOccurs="0"/>
37
 *         &lt;element ref="{}BatteryPower" minOccurs="0"/>
38
 *         &lt;element ref="{}BoxContents" minOccurs="0"/>
39
 *         &lt;element name="CableLength" type="{}LengthDimension" minOccurs="0"/>
40
 *         &lt;element ref="{}FinishType" minOccurs="0"/>
41
 *         &lt;element ref="{}PowerPlugType" minOccurs="0"/>
42
 *         &lt;element name="PowerSource" type="{}FortyStringNotNull" minOccurs="0"/>
43
 *       &lt;/sequence>
44
 *     &lt;/restriction>
45
 *   &lt;/complexContent>
46
 * &lt;/complexType>
47
 * </pre>
48
 * 
49
 * 
50
 */
51
@XmlAccessorType(XmlAccessType.FIELD)
52
@XmlType(name = "", propOrder = {
53
    "analogRGBInput",
54
    "batteryCellType",
55
    "batteryChargeCycles",
56
    "batteryPower",
57
    "boxContents",
58
    "cableLength",
59
    "finishType",
60
    "powerPlugType",
61
    "powerSource"
62
})
63
@XmlRootElement(name = "CameraPowerSupply")
64
public class CameraPowerSupply {
65
 
66
    @XmlElement(name = "AnalogRGBInput")
67
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
68
    protected List<String> analogRGBInput;
69
    @XmlElement(name = "BatteryCellType")
70
    protected BatteryCellTypeValues batteryCellType;
71
    @XmlElement(name = "BatteryChargeCycles")
72
    @XmlSchemaType(name = "positiveInteger")
73
    protected BigInteger batteryChargeCycles;
74
    @XmlElement(name = "BatteryPower")
75
    protected BatteryPowerIntegerDimension batteryPower;
76
    @XmlElement(name = "BoxContents")
77
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
78
    protected String boxContents;
79
    @XmlElement(name = "CableLength")
80
    protected LengthDimension cableLength;
81
    @XmlElement(name = "FinishType")
82
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
83
    protected String finishType;
84
    @XmlElement(name = "PowerPlugType")
85
    protected PowerPlugType powerPlugType;
86
    @XmlElement(name = "PowerSource")
87
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
88
    protected String powerSource;
89
 
90
    /**
91
     * Gets the value of the analogRGBInput property.
92
     * 
93
     * <p>
94
     * This accessor method returns a reference to the live list,
95
     * not a snapshot. Therefore any modification you make to the
96
     * returned list will be present inside the JAXB object.
97
     * This is why there is not a <CODE>set</CODE> method for the analogRGBInput property.
98
     * 
99
     * <p>
100
     * For example, to add a new item, do as follows:
101
     * <pre>
102
     *    getAnalogRGBInput().add(newItem);
103
     * </pre>
104
     * 
105
     * 
106
     * <p>
107
     * Objects of the following type(s) are allowed in the list
108
     * {@link String }
109
     * 
110
     * 
111
     */
112
    public List<String> getAnalogRGBInput() {
113
        if (analogRGBInput == null) {
114
            analogRGBInput = new ArrayList<String>();
115
        }
116
        return this.analogRGBInput;
117
    }
118
 
119
    /**
120
     * Gets the value of the batteryCellType property.
121
     * 
122
     * @return
123
     *     possible object is
124
     *     {@link BatteryCellTypeValues }
125
     *     
126
     */
127
    public BatteryCellTypeValues getBatteryCellType() {
128
        return batteryCellType;
129
    }
130
 
131
    /**
132
     * Sets the value of the batteryCellType property.
133
     * 
134
     * @param value
135
     *     allowed object is
136
     *     {@link BatteryCellTypeValues }
137
     *     
138
     */
139
    public void setBatteryCellType(BatteryCellTypeValues value) {
140
        this.batteryCellType = value;
141
    }
142
 
143
    /**
144
     * Gets the value of the batteryChargeCycles property.
145
     * 
146
     * @return
147
     *     possible object is
148
     *     {@link BigInteger }
149
     *     
150
     */
151
    public BigInteger getBatteryChargeCycles() {
152
        return batteryChargeCycles;
153
    }
154
 
155
    /**
156
     * Sets the value of the batteryChargeCycles property.
157
     * 
158
     * @param value
159
     *     allowed object is
160
     *     {@link BigInteger }
161
     *     
162
     */
163
    public void setBatteryChargeCycles(BigInteger value) {
164
        this.batteryChargeCycles = value;
165
    }
166
 
167
    /**
168
     * Gets the value of the batteryPower property.
169
     * 
170
     * @return
171
     *     possible object is
172
     *     {@link BatteryPowerIntegerDimension }
173
     *     
174
     */
175
    public BatteryPowerIntegerDimension getBatteryPower() {
176
        return batteryPower;
177
    }
178
 
179
    /**
180
     * Sets the value of the batteryPower property.
181
     * 
182
     * @param value
183
     *     allowed object is
184
     *     {@link BatteryPowerIntegerDimension }
185
     *     
186
     */
187
    public void setBatteryPower(BatteryPowerIntegerDimension value) {
188
        this.batteryPower = value;
189
    }
190
 
191
    /**
192
     * Gets the value of the boxContents property.
193
     * 
194
     * @return
195
     *     possible object is
196
     *     {@link String }
197
     *     
198
     */
199
    public String getBoxContents() {
200
        return boxContents;
201
    }
202
 
203
    /**
204
     * Sets the value of the boxContents property.
205
     * 
206
     * @param value
207
     *     allowed object is
208
     *     {@link String }
209
     *     
210
     */
211
    public void setBoxContents(String value) {
212
        this.boxContents = value;
213
    }
214
 
215
    /**
216
     * Gets the value of the cableLength property.
217
     * 
218
     * @return
219
     *     possible object is
220
     *     {@link LengthDimension }
221
     *     
222
     */
223
    public LengthDimension getCableLength() {
224
        return cableLength;
225
    }
226
 
227
    /**
228
     * Sets the value of the cableLength property.
229
     * 
230
     * @param value
231
     *     allowed object is
232
     *     {@link LengthDimension }
233
     *     
234
     */
235
    public void setCableLength(LengthDimension value) {
236
        this.cableLength = value;
237
    }
238
 
239
    /**
240
     * Gets the value of the finishType property.
241
     * 
242
     * @return
243
     *     possible object is
244
     *     {@link String }
245
     *     
246
     */
247
    public String getFinishType() {
248
        return finishType;
249
    }
250
 
251
    /**
252
     * Sets the value of the finishType property.
253
     * 
254
     * @param value
255
     *     allowed object is
256
     *     {@link String }
257
     *     
258
     */
259
    public void setFinishType(String value) {
260
        this.finishType = value;
261
    }
262
 
263
    /**
264
     * Gets the value of the powerPlugType property.
265
     * 
266
     * @return
267
     *     possible object is
268
     *     {@link PowerPlugType }
269
     *     
270
     */
271
    public PowerPlugType getPowerPlugType() {
272
        return powerPlugType;
273
    }
274
 
275
    /**
276
     * Sets the value of the powerPlugType property.
277
     * 
278
     * @param value
279
     *     allowed object is
280
     *     {@link PowerPlugType }
281
     *     
282
     */
283
    public void setPowerPlugType(PowerPlugType value) {
284
        this.powerPlugType = value;
285
    }
286
 
287
    /**
288
     * Gets the value of the powerSource property.
289
     * 
290
     * @return
291
     *     possible object is
292
     *     {@link String }
293
     *     
294
     */
295
    public String getPowerSource() {
296
        return powerSource;
297
    }
298
 
299
    /**
300
     * Sets the value of the powerSource property.
301
     * 
302
     * @param value
303
     *     allowed object is
304
     *     {@link String }
305
     *     
306
     */
307
    public void setPowerSource(String value) {
308
        this.powerSource = value;
309
    }
310
 
311
}