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="film-cameras"/>
32
 *               &lt;enumeration value="digital-cameras"/>
33
 *               &lt;enumeration value="camcorders"/>
34
 *               &lt;enumeration value="telescopes"/>
35
 *               &lt;enumeration value="microscopes"/>
36
 *             &lt;/restriction>
37
 *           &lt;/simpleType>
38
 *         &lt;/element>
39
 *         &lt;element name="AccessoryType" minOccurs="0">
40
 *           &lt;simpleType>
41
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
42
 *               &lt;enumeration value="c-mounts"/>
43
 *               &lt;enumeration value="lens-scope-converters"/>
44
 *               &lt;enumeration value="lens-to-camera-adapters"/>
45
 *               &lt;enumeration value="remote-lens-controllers"/>
46
 *               &lt;enumeration value="extenders"/>
47
 *               &lt;enumeration value="series-vii-adapters"/>
48
 *               &lt;enumeration value="t-mounts"/>
49
 *               &lt;enumeration value="tripod-adapters"/>
50
 *               &lt;enumeration value="lens-boards"/>
51
 *               &lt;enumeration value="bayonets"/>
52
 *               &lt;enumeration value="lens-hoods"/>
53
 *               &lt;enumeration value="lens-supports"/>
54
 *               &lt;enumeration value="rapid-focusing-levers"/>
55
 *               &lt;enumeration value="shutters"/>
56
 *               &lt;enumeration value="diopters"/>
57
 *               &lt;enumeration value="mirror-scopes"/>
58
 *               &lt;enumeration value="lens-caps-general"/>
59
 *               &lt;enumeration value="lens-caps-up-to-48mm"/>
60
 *               &lt;enumeration value="lens-caps-49mm"/>
61
 *               &lt;enumeration value="lens-caps-52mm"/>
62
 *               &lt;enumeration value="lens-caps-55mm"/>
63
 *               &lt;enumeration value="lens-caps-58mm"/>
64
 *               &lt;enumeration value="lens-caps-62mm"/>
65
 *               &lt;enumeration value="lens-caps-67mm"/>
66
 *               &lt;enumeration value="lens-caps-72mm"/>
67
 *               &lt;enumeration value="lens-caps-77mm"/>
68
 *               &lt;enumeration value="lens-caps-82mm"/>
69
 *               &lt;enumeration value="lens-caps-86mm"/>
70
 *               &lt;enumeration value="lens-caps-95mm"/>
71
 *               &lt;enumeration value="lens-caps-other-sizes"/>
72
 *             &lt;/restriction>
73
 *           &lt;/simpleType>
74
 *         &lt;/element>
75
 *       &lt;/sequence>
76
 *     &lt;/restriction>
77
 *   &lt;/complexContent>
78
 * &lt;/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
}