| 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 |
* <complexType>
|
|
|
25 |
* <complexContent>
|
|
|
26 |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
|
27 |
* <sequence>
|
|
|
28 |
* <element name="ForUseWith" minOccurs="0">
|
|
|
29 |
* <simpleType>
|
|
|
30 |
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
|
|
31 |
* <enumeration value="film-cameras"/>
|
|
|
32 |
* <enumeration value="digital-cameras"/>
|
|
|
33 |
* <enumeration value="camcorders"/>
|
|
|
34 |
* <enumeration value="telescopes"/>
|
|
|
35 |
* <enumeration value="microscopes"/>
|
|
|
36 |
* </restriction>
|
|
|
37 |
* </simpleType>
|
|
|
38 |
* </element>
|
|
|
39 |
* <element name="AccessoryType" minOccurs="0">
|
|
|
40 |
* <simpleType>
|
|
|
41 |
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
|
|
42 |
* <enumeration value="c-mounts"/>
|
|
|
43 |
* <enumeration value="lens-scope-converters"/>
|
|
|
44 |
* <enumeration value="lens-to-camera-adapters"/>
|
|
|
45 |
* <enumeration value="remote-lens-controllers"/>
|
|
|
46 |
* <enumeration value="extenders"/>
|
|
|
47 |
* <enumeration value="series-vii-adapters"/>
|
|
|
48 |
* <enumeration value="t-mounts"/>
|
|
|
49 |
* <enumeration value="tripod-adapters"/>
|
|
|
50 |
* <enumeration value="lens-boards"/>
|
|
|
51 |
* <enumeration value="bayonets"/>
|
|
|
52 |
* <enumeration value="lens-hoods"/>
|
|
|
53 |
* <enumeration value="lens-supports"/>
|
|
|
54 |
* <enumeration value="rapid-focusing-levers"/>
|
|
|
55 |
* <enumeration value="shutters"/>
|
|
|
56 |
* <enumeration value="diopters"/>
|
|
|
57 |
* <enumeration value="mirror-scopes"/>
|
|
|
58 |
* <enumeration value="lens-caps-general"/>
|
|
|
59 |
* <enumeration value="lens-caps-up-to-48mm"/>
|
|
|
60 |
* <enumeration value="lens-caps-49mm"/>
|
|
|
61 |
* <enumeration value="lens-caps-52mm"/>
|
|
|
62 |
* <enumeration value="lens-caps-55mm"/>
|
|
|
63 |
* <enumeration value="lens-caps-58mm"/>
|
|
|
64 |
* <enumeration value="lens-caps-62mm"/>
|
|
|
65 |
* <enumeration value="lens-caps-67mm"/>
|
|
|
66 |
* <enumeration value="lens-caps-72mm"/>
|
|
|
67 |
* <enumeration value="lens-caps-77mm"/>
|
|
|
68 |
* <enumeration value="lens-caps-82mm"/>
|
|
|
69 |
* <enumeration value="lens-caps-86mm"/>
|
|
|
70 |
* <enumeration value="lens-caps-95mm"/>
|
|
|
71 |
* <enumeration value="lens-caps-other-sizes"/>
|
|
|
72 |
* </restriction>
|
|
|
73 |
* </simpleType>
|
|
|
74 |
* </element>
|
|
|
75 |
* </sequence>
|
|
|
76 |
* </restriction>
|
|
|
77 |
* </complexContent>
|
|
|
78 |
* </complexType>
|
|
|
79 |
* </pre>
|
|
|
80 |
*
|
|
|
81 |
*
|
|
|
82 |
*/
|
|
|
83 |
@XmlAccessorType(XmlAccessType.FIELD)
|
|
|
84 |
@XmlType(name = "", propOrder = {
|
|
|
85 |
"forUseWith",
|
|
|
86 |
"accessoryType"
|
|
|
87 |
})
|
|
|
88 |
@XmlRootElement(name = "LensAccessory")
|
|
|
89 |
public class LensAccessory {
|
|
|
90 |
|
|
|
91 |
@XmlElement(name = "ForUseWith")
|
|
|
92 |
protected String forUseWith;
|
|
|
93 |
@XmlElement(name = "AccessoryType")
|
|
|
94 |
protected String accessoryType;
|
|
|
95 |
|
|
|
96 |
/**
|
|
|
97 |
* Gets the value of the forUseWith property.
|
|
|
98 |
*
|
|
|
99 |
* @return
|
|
|
100 |
* possible object is
|
|
|
101 |
* {@link String }
|
|
|
102 |
*
|
|
|
103 |
*/
|
|
|
104 |
public String getForUseWith() {
|
|
|
105 |
return forUseWith;
|
|
|
106 |
}
|
|
|
107 |
|
|
|
108 |
/**
|
|
|
109 |
* Sets the value of the forUseWith property.
|
|
|
110 |
*
|
|
|
111 |
* @param value
|
|
|
112 |
* allowed object is
|
|
|
113 |
* {@link String }
|
|
|
114 |
*
|
|
|
115 |
*/
|
|
|
116 |
public void setForUseWith(String value) {
|
|
|
117 |
this.forUseWith = value;
|
|
|
118 |
}
|
|
|
119 |
|
|
|
120 |
/**
|
|
|
121 |
* Gets the value of the accessoryType property.
|
|
|
122 |
*
|
|
|
123 |
* @return
|
|
|
124 |
* possible object is
|
|
|
125 |
* {@link String }
|
|
|
126 |
*
|
|
|
127 |
*/
|
|
|
128 |
public String getAccessoryType() {
|
|
|
129 |
return accessoryType;
|
|
|
130 |
}
|
|
|
131 |
|
|
|
132 |
/**
|
|
|
133 |
* Sets the value of the accessoryType property.
|
|
|
134 |
*
|
|
|
135 |
* @param value
|
|
|
136 |
* allowed object is
|
|
|
137 |
* {@link String }
|
|
|
138 |
*
|
|
|
139 |
*/
|
|
|
140 |
public void setAccessoryType(String value) {
|
|
|
141 |
this.accessoryType = value;
|
|
|
142 |
}
|
|
|
143 |
|
|
|
144 |
}
|