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.util.ArrayList;
12
import java.util.List;
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="{}BoxContents" minOccurs="0"/>
33
 *         &lt;element ref="{}MaxWeightCapacity" minOccurs="0"/>
34
 *         &lt;element ref="{}PowerPlugType" minOccurs="0"/>
35
 *         &lt;element ref="{}WaterResistantLevel" minOccurs="0"/>
36
 *         &lt;element name="WirelessTechnology" type="{}StringNotNull" maxOccurs="5" 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
    "boxContents",
48
    "maxWeightCapacity",
49
    "powerPlugType",
50
    "waterResistantLevel",
51
    "wirelessTechnology"
52
})
53
@XmlRootElement(name = "CameraBagsAndCases")
54
public class CameraBagsAndCases {
55
 
56
    @XmlElement(name = "BoxContents")
57
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
58
    protected String boxContents;
59
    @XmlElement(name = "MaxWeightCapacity")
60
    protected WeightDimension maxWeightCapacity;
61
    @XmlElement(name = "PowerPlugType")
62
    protected PowerPlugType powerPlugType;
63
    @XmlElement(name = "WaterResistantLevel")
64
    protected WaterResistantType waterResistantLevel;
65
    @XmlElement(name = "WirelessTechnology")
66
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
67
    protected List<String> wirelessTechnology;
68
 
69
    /**
70
     * Gets the value of the boxContents property.
71
     * 
72
     * @return
73
     *     possible object is
74
     *     {@link String }
75
     *     
76
     */
77
    public String getBoxContents() {
78
        return boxContents;
79
    }
80
 
81
    /**
82
     * Sets the value of the boxContents property.
83
     * 
84
     * @param value
85
     *     allowed object is
86
     *     {@link String }
87
     *     
88
     */
89
    public void setBoxContents(String value) {
90
        this.boxContents = value;
91
    }
92
 
93
    /**
94
     * Gets the value of the maxWeightCapacity property.
95
     * 
96
     * @return
97
     *     possible object is
98
     *     {@link WeightDimension }
99
     *     
100
     */
101
    public WeightDimension getMaxWeightCapacity() {
102
        return maxWeightCapacity;
103
    }
104
 
105
    /**
106
     * Sets the value of the maxWeightCapacity property.
107
     * 
108
     * @param value
109
     *     allowed object is
110
     *     {@link WeightDimension }
111
     *     
112
     */
113
    public void setMaxWeightCapacity(WeightDimension value) {
114
        this.maxWeightCapacity = 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 waterResistantLevel property.
143
     * 
144
     * @return
145
     *     possible object is
146
     *     {@link WaterResistantType }
147
     *     
148
     */
149
    public WaterResistantType getWaterResistantLevel() {
150
        return waterResistantLevel;
151
    }
152
 
153
    /**
154
     * Sets the value of the waterResistantLevel property.
155
     * 
156
     * @param value
157
     *     allowed object is
158
     *     {@link WaterResistantType }
159
     *     
160
     */
161
    public void setWaterResistantLevel(WaterResistantType value) {
162
        this.waterResistantLevel = value;
163
    }
164
 
165
    /**
166
     * Gets the value of the wirelessTechnology property.
167
     * 
168
     * <p>
169
     * This accessor method returns a reference to the live list,
170
     * not a snapshot. Therefore any modification you make to the
171
     * returned list will be present inside the JAXB object.
172
     * This is why there is not a <CODE>set</CODE> method for the wirelessTechnology property.
173
     * 
174
     * <p>
175
     * For example, to add a new item, do as follows:
176
     * <pre>
177
     *    getWirelessTechnology().add(newItem);
178
     * </pre>
179
     * 
180
     * 
181
     * <p>
182
     * Objects of the following type(s) are allowed in the list
183
     * {@link String }
184
     * 
185
     * 
186
     */
187
    public List<String> getWirelessTechnology() {
188
        if (wirelessTechnology == null) {
189
            wirelessTechnology = new ArrayList<String>();
190
        }
191
        return this.wirelessTechnology;
192
    }
193
 
194
}