Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7481 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.XmlType;
17
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
18
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
19
 
20
 
21
/**
22
 * <p>Java class for anonymous complex type.
23
 * 
24
 * <p>The following schema fragment specifies the expected content contained within this class.
25
 * 
26
 * <pre>
27
 * &lt;complexType>
28
 *   &lt;complexContent>
29
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30
 *       &lt;sequence>
31
 *         &lt;element name="FilmColor" minOccurs="0">
32
 *           &lt;simpleType>
33
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
34
 *               &lt;enumeration value="black-and-white"/>
35
 *               &lt;enumeration value="color"/>
36
 *             &lt;/restriction>
37
 *           &lt;/simpleType>
38
 *         &lt;/element>
39
 *         &lt;element name="FilmType" minOccurs="0">
40
 *           &lt;simpleType>
41
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
42
 *               &lt;enumeration value="print"/>
43
 *               &lt;enumeration value="slide"/>
44
 *             &lt;/restriction>
45
 *           &lt;/simpleType>
46
 *         &lt;/element>
47
 *         &lt;element name="Format" minOccurs="0">
48
 *           &lt;simpleType>
49
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
50
 *               &lt;enumeration value="35mm"/>
51
 *               &lt;enumeration value="70mm"/>
52
 *               &lt;enumeration value="110"/>
53
 *               &lt;enumeration value="120"/>
54
 *               &lt;enumeration value="220"/>
55
 *               &lt;enumeration value="2x3"/>
56
 *               &lt;enumeration value="4x5"/>
57
 *               &lt;enumeration value="5x7"/>
58
 *               &lt;enumeration value="8x10"/>
59
 *               &lt;enumeration value="11x14"/>
60
 *               &lt;enumeration value="aps"/>
61
 *               &lt;enumeration value="micro"/>
62
 *               &lt;enumeration value="instant"/>
63
 *               &lt;enumeration value="other"/>
64
 *             &lt;/restriction>
65
 *           &lt;/simpleType>
66
 *         &lt;/element>
67
 *         &lt;element name="ASA-ISO" type="{}PositiveInteger" minOccurs="0"/>
68
 *         &lt;element name="ExposureCount" type="{}StringNotNull" minOccurs="0"/>
69
 *         &lt;element name="LightingType" minOccurs="0">
70
 *           &lt;simpleType>
71
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
72
 *               &lt;enumeration value="daylight"/>
73
 *               &lt;enumeration value="infrared"/>
74
 *               &lt;enumeration value="tungsten"/>
75
 *             &lt;/restriction>
76
 *           &lt;/simpleType>
77
 *         &lt;/element>
78
 *       &lt;/sequence>
79
 *     &lt;/restriction>
80
 *   &lt;/complexContent>
81
 * &lt;/complexType>
82
 * </pre>
83
 * 
84
 * 
85
 */
86
@XmlAccessorType(XmlAccessType.FIELD)
87
@XmlType(name = "", propOrder = {
88
    "filmColor",
89
    "filmType",
90
    "format",
91
    "asaiso",
92
    "exposureCount",
93
    "lightingType"
94
})
95
@XmlRootElement(name = "Film")
96
public class Film {
97
 
98
    @XmlElement(name = "FilmColor")
99
    protected String filmColor;
100
    @XmlElement(name = "FilmType")
101
    protected String filmType;
102
    @XmlElement(name = "Format")
103
    protected String format;
104
    @XmlElement(name = "ASA-ISO")
105
    protected BigInteger asaiso;
106
    @XmlElement(name = "ExposureCount")
107
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
108
    protected String exposureCount;
109
    @XmlElement(name = "LightingType")
110
    protected String lightingType;
111
 
112
    /**
113
     * Gets the value of the filmColor property.
114
     * 
115
     * @return
116
     *     possible object is
117
     *     {@link String }
118
     *     
119
     */
120
    public String getFilmColor() {
121
        return filmColor;
122
    }
123
 
124
    /**
125
     * Sets the value of the filmColor property.
126
     * 
127
     * @param value
128
     *     allowed object is
129
     *     {@link String }
130
     *     
131
     */
132
    public void setFilmColor(String value) {
133
        this.filmColor = value;
134
    }
135
 
136
    /**
137
     * Gets the value of the filmType property.
138
     * 
139
     * @return
140
     *     possible object is
141
     *     {@link String }
142
     *     
143
     */
144
    public String getFilmType() {
145
        return filmType;
146
    }
147
 
148
    /**
149
     * Sets the value of the filmType property.
150
     * 
151
     * @param value
152
     *     allowed object is
153
     *     {@link String }
154
     *     
155
     */
156
    public void setFilmType(String value) {
157
        this.filmType = value;
158
    }
159
 
160
    /**
161
     * Gets the value of the format property.
162
     * 
163
     * @return
164
     *     possible object is
165
     *     {@link String }
166
     *     
167
     */
168
    public String getFormat() {
169
        return format;
170
    }
171
 
172
    /**
173
     * Sets the value of the format property.
174
     * 
175
     * @param value
176
     *     allowed object is
177
     *     {@link String }
178
     *     
179
     */
180
    public void setFormat(String value) {
181
        this.format = value;
182
    }
183
 
184
    /**
185
     * Gets the value of the asaiso property.
186
     * 
187
     * @return
188
     *     possible object is
189
     *     {@link BigInteger }
190
     *     
191
     */
192
    public BigInteger getASAISO() {
193
        return asaiso;
194
    }
195
 
196
    /**
197
     * Sets the value of the asaiso property.
198
     * 
199
     * @param value
200
     *     allowed object is
201
     *     {@link BigInteger }
202
     *     
203
     */
204
    public void setASAISO(BigInteger value) {
205
        this.asaiso = value;
206
    }
207
 
208
    /**
209
     * Gets the value of the exposureCount property.
210
     * 
211
     * @return
212
     *     possible object is
213
     *     {@link String }
214
     *     
215
     */
216
    public String getExposureCount() {
217
        return exposureCount;
218
    }
219
 
220
    /**
221
     * Sets the value of the exposureCount property.
222
     * 
223
     * @param value
224
     *     allowed object is
225
     *     {@link String }
226
     *     
227
     */
228
    public void setExposureCount(String value) {
229
        this.exposureCount = value;
230
    }
231
 
232
    /**
233
     * Gets the value of the lightingType property.
234
     * 
235
     * @return
236
     *     possible object is
237
     *     {@link String }
238
     *     
239
     */
240
    public String getLightingType() {
241
        return lightingType;
242
    }
243
 
244
    /**
245
     * Sets the value of the lightingType property.
246
     * 
247
     * @param value
248
     *     allowed object is
249
     *     {@link String }
250
     *     
251
     */
252
    public void setLightingType(String value) {
253
        this.lightingType = value;
254
    }
255
 
256
}