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 javax.xml.bind.annotation.XmlAccessType;
13
import javax.xml.bind.annotation.XmlAccessorType;
14
import javax.xml.bind.annotation.XmlElement;
15
import javax.xml.bind.annotation.XmlRootElement;
16
import javax.xml.bind.annotation.XmlSchemaType;
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 name="BatteryChargeCycles" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" minOccurs="0"/>
33
 *         &lt;element ref="{}BatteryCellType" minOccurs="0"/>
34
 *         &lt;element ref="{}PowerPlugType" minOccurs="0"/>
35
 *         &lt;element name="PowerSource" type="{}FortyStringNotNull" minOccurs="0"/>
36
 *         &lt;element name="Wattage" type="{}WattageIntegerDimension" minOccurs="0"/>
37
 *       &lt;/sequence>
38
 *     &lt;/restriction>
39
 *   &lt;/complexContent>
40
 * &lt;/complexType>
41
 * </pre>
42
 * 
43
 * 
44
 */
45
@XmlAccessorType(XmlAccessType.FIELD)
46
@XmlType(name = "", propOrder = {
47
    "batteryChargeCycles",
48
    "batteryCellType",
49
    "powerPlugType",
50
    "powerSource",
51
    "wattage"
52
})
53
@XmlRootElement(name = "CEBattery")
54
public class CEBattery {
55
 
56
    @XmlElement(name = "BatteryChargeCycles")
57
    @XmlSchemaType(name = "positiveInteger")
58
    protected BigInteger batteryChargeCycles;
59
    @XmlElement(name = "BatteryCellType")
60
    protected BatteryCellTypeValues batteryCellType;
61
    @XmlElement(name = "PowerPlugType")
62
    protected PowerPlugType powerPlugType;
63
    @XmlElement(name = "PowerSource")
64
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
65
    protected String powerSource;
66
    @XmlElement(name = "Wattage")
67
    protected WattageIntegerDimension wattage;
68
 
69
    /**
70
     * Gets the value of the batteryChargeCycles property.
71
     * 
72
     * @return
73
     *     possible object is
74
     *     {@link BigInteger }
75
     *     
76
     */
77
    public BigInteger getBatteryChargeCycles() {
78
        return batteryChargeCycles;
79
    }
80
 
81
    /**
82
     * Sets the value of the batteryChargeCycles property.
83
     * 
84
     * @param value
85
     *     allowed object is
86
     *     {@link BigInteger }
87
     *     
88
     */
89
    public void setBatteryChargeCycles(BigInteger value) {
90
        this.batteryChargeCycles = value;
91
    }
92
 
93
    /**
94
     * Gets the value of the batteryCellType property.
95
     * 
96
     * @return
97
     *     possible object is
98
     *     {@link BatteryCellTypeValues }
99
     *     
100
     */
101
    public BatteryCellTypeValues getBatteryCellType() {
102
        return batteryCellType;
103
    }
104
 
105
    /**
106
     * Sets the value of the batteryCellType property.
107
     * 
108
     * @param value
109
     *     allowed object is
110
     *     {@link BatteryCellTypeValues }
111
     *     
112
     */
113
    public void setBatteryCellType(BatteryCellTypeValues value) {
114
        this.batteryCellType = value;
115
    }
116
 
117
    /**
118
     * Gets the value of the powerPlugType property.
119
     * 
120
     * @return
121
     *     possible object is
122
     *     {@link PowerPlugType }
123
     *     
124
     */
125
    public PowerPlugType getPowerPlugType() {
126
        return powerPlugType;
127
    }
128
 
129
    /**
130
     * Sets the value of the powerPlugType property.
131
     * 
132
     * @param value
133
     *     allowed object is
134
     *     {@link PowerPlugType }
135
     *     
136
     */
137
    public void setPowerPlugType(PowerPlugType value) {
138
        this.powerPlugType = value;
139
    }
140
 
141
    /**
142
     * Gets the value of the powerSource property.
143
     * 
144
     * @return
145
     *     possible object is
146
     *     {@link String }
147
     *     
148
     */
149
    public String getPowerSource() {
150
        return powerSource;
151
    }
152
 
153
    /**
154
     * Sets the value of the powerSource property.
155
     * 
156
     * @param value
157
     *     allowed object is
158
     *     {@link String }
159
     *     
160
     */
161
    public void setPowerSource(String value) {
162
        this.powerSource = value;
163
    }
164
 
165
    /**
166
     * Gets the value of the wattage property.
167
     * 
168
     * @return
169
     *     possible object is
170
     *     {@link WattageIntegerDimension }
171
     *     
172
     */
173
    public WattageIntegerDimension getWattage() {
174
        return wattage;
175
    }
176
 
177
    /**
178
     * Sets the value of the wattage property.
179
     * 
180
     * @param value
181
     *     allowed object is
182
     *     {@link WattageIntegerDimension }
183
     *     
184
     */
185
    public void setWattage(WattageIntegerDimension value) {
186
        this.wattage = value;
187
    }
188
 
189
}