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 javax.xml.bind.annotation.XmlAccessType;
12
import javax.xml.bind.annotation.XmlAccessorType;
13
import javax.xml.bind.annotation.XmlElement;
14
import javax.xml.bind.annotation.XmlRootElement;
15
import javax.xml.bind.annotation.XmlType;
16
 
17
 
18
/**
19
 * <p>Java class for anonymous complex type.
20
 * 
21
 * <p>The following schema fragment specifies the expected content contained within this class.
22
 * 
23
 * <pre>
24
 * &lt;complexType>
25
 *   &lt;complexContent>
26
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27
 *       &lt;sequence>
28
 *         &lt;element name="ForUseWith" minOccurs="0">
29
 *           &lt;simpleType>
30
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
31
 *               &lt;enumeration value="still-cameras"/>
32
 *               &lt;enumeration value="camcorders"/>
33
 *               &lt;enumeration value="still-camera-and-camcorders"/>
34
 *               &lt;enumeration value="telescopes"/>
35
 *             &lt;/restriction>
36
 *           &lt;/simpleType>
37
 *         &lt;/element>
38
 *         &lt;element name="StandType" minOccurs="0">
39
 *           &lt;simpleType>
40
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
41
 *               &lt;enumeration value="camera-stands"/>
42
 *               &lt;enumeration value="monopods"/>
43
 *               &lt;enumeration value="tripods"/>
44
 *               &lt;enumeration value="car-window-mounts"/>
45
 *             &lt;/restriction>
46
 *           &lt;/simpleType>
47
 *         &lt;/element>
48
 *         &lt;element name="SpecificUses" minOccurs="0">
49
 *           &lt;simpleType>
50
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
51
 *               &lt;enumeration value="tabletop"/>
52
 *               &lt;enumeration value="travel"/>
53
 *               &lt;enumeration value="hiking-and-outdoors"/>
54
 *               &lt;enumeration value="hunting-and-shooting"/>
55
 *               &lt;enumeration value="sports"/>
56
 *             &lt;/restriction>
57
 *           &lt;/simpleType>
58
 *         &lt;/element>
59
 *         &lt;element name="Material" minOccurs="0">
60
 *           &lt;simpleType>
61
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
62
 *               &lt;enumeration value="aluminum"/>
63
 *               &lt;enumeration value="carbon-fiber"/>
64
 *             &lt;/restriction>
65
 *           &lt;/simpleType>
66
 *         &lt;/element>
67
 *         &lt;element name="HeadType" minOccurs="0">
68
 *           &lt;simpleType>
69
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
70
 *               &lt;enumeration value="geared-heads"/>
71
 *               &lt;enumeration value="ball-heads"/>
72
 *               &lt;enumeration value="camera-rotator-heads"/>
73
 *               &lt;enumeration value="pan-and-tilt-heads"/>
74
 *               &lt;enumeration value="video-heads"/>
75
 *               &lt;enumeration value="3-way-heads"/>
76
 *               &lt;enumeration value="panoramic-heads"/>
77
 *             &lt;/restriction>
78
 *           &lt;/simpleType>
79
 *         &lt;/element>
80
 *         &lt;element name="PackageType" minOccurs="0">
81
 *           &lt;simpleType>
82
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
83
 *               &lt;enumeration value="head-only"/>
84
 *               &lt;enumeration value="legs-only"/>
85
 *               &lt;enumeration value="head-and-leg-units"/>
86
 *             &lt;/restriction>
87
 *           &lt;/simpleType>
88
 *         &lt;/element>
89
 *       &lt;/sequence>
90
 *     &lt;/restriction>
91
 *   &lt;/complexContent>
92
 * &lt;/complexType>
93
 * </pre>
94
 * 
95
 * 
96
 */
97
@XmlAccessorType(XmlAccessType.FIELD)
98
@XmlType(name = "", propOrder = {
99
    "forUseWith",
100
    "standType",
101
    "specificUses",
102
    "material",
103
    "headType",
104
    "packageType"
105
})
106
@XmlRootElement(name = "TripodStand")
107
public class TripodStand {
108
 
109
    @XmlElement(name = "ForUseWith")
110
    protected String forUseWith;
111
    @XmlElement(name = "StandType")
112
    protected String standType;
113
    @XmlElement(name = "SpecificUses")
114
    protected String specificUses;
115
    @XmlElement(name = "Material")
116
    protected String material;
117
    @XmlElement(name = "HeadType")
118
    protected String headType;
119
    @XmlElement(name = "PackageType")
120
    protected String packageType;
121
 
122
    /**
123
     * Gets the value of the forUseWith property.
124
     * 
125
     * @return
126
     *     possible object is
127
     *     {@link String }
128
     *     
129
     */
130
    public String getForUseWith() {
131
        return forUseWith;
132
    }
133
 
134
    /**
135
     * Sets the value of the forUseWith property.
136
     * 
137
     * @param value
138
     *     allowed object is
139
     *     {@link String }
140
     *     
141
     */
142
    public void setForUseWith(String value) {
143
        this.forUseWith = value;
144
    }
145
 
146
    /**
147
     * Gets the value of the standType property.
148
     * 
149
     * @return
150
     *     possible object is
151
     *     {@link String }
152
     *     
153
     */
154
    public String getStandType() {
155
        return standType;
156
    }
157
 
158
    /**
159
     * Sets the value of the standType property.
160
     * 
161
     * @param value
162
     *     allowed object is
163
     *     {@link String }
164
     *     
165
     */
166
    public void setStandType(String value) {
167
        this.standType = value;
168
    }
169
 
170
    /**
171
     * Gets the value of the specificUses property.
172
     * 
173
     * @return
174
     *     possible object is
175
     *     {@link String }
176
     *     
177
     */
178
    public String getSpecificUses() {
179
        return specificUses;
180
    }
181
 
182
    /**
183
     * Sets the value of the specificUses property.
184
     * 
185
     * @param value
186
     *     allowed object is
187
     *     {@link String }
188
     *     
189
     */
190
    public void setSpecificUses(String value) {
191
        this.specificUses = value;
192
    }
193
 
194
    /**
195
     * Gets the value of the material property.
196
     * 
197
     * @return
198
     *     possible object is
199
     *     {@link String }
200
     *     
201
     */
202
    public String getMaterial() {
203
        return material;
204
    }
205
 
206
    /**
207
     * Sets the value of the material property.
208
     * 
209
     * @param value
210
     *     allowed object is
211
     *     {@link String }
212
     *     
213
     */
214
    public void setMaterial(String value) {
215
        this.material = value;
216
    }
217
 
218
    /**
219
     * Gets the value of the headType property.
220
     * 
221
     * @return
222
     *     possible object is
223
     *     {@link String }
224
     *     
225
     */
226
    public String getHeadType() {
227
        return headType;
228
    }
229
 
230
    /**
231
     * Sets the value of the headType property.
232
     * 
233
     * @param value
234
     *     allowed object is
235
     *     {@link String }
236
     *     
237
     */
238
    public void setHeadType(String value) {
239
        this.headType = value;
240
    }
241
 
242
    /**
243
     * Gets the value of the packageType property.
244
     * 
245
     * @return
246
     *     possible object is
247
     *     {@link String }
248
     *     
249
     */
250
    public String getPackageType() {
251
        return packageType;
252
    }
253
 
254
    /**
255
     * Sets the value of the packageType property.
256
     * 
257
     * @param value
258
     *     allowed object is
259
     *     {@link String }
260
     *     
261
     */
262
    public void setPackageType(String value) {
263
        this.packageType = value;
264
    }
265
 
266
}