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 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="FlashType" minOccurs="0">
29
 *           &lt;simpleType>
30
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
31
 *               &lt;enumeration value="handle-mount"/>
32
 *               &lt;enumeration value="macro"/>
33
 *               &lt;enumeration value="ring-light"/>
34
 *               &lt;enumeration value="shoe-mount"/>
35
 *               &lt;enumeration value="other"/>
36
 *             &lt;/restriction>
37
 *           &lt;/simpleType>
38
 *         &lt;/element>
39
 *         &lt;element name="SlaveFlashes" minOccurs="0">
40
 *           &lt;simpleType>
41
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
42
 *               &lt;enumeration value="slave-flashed-general"/>
43
 *               &lt;enumeration value="slave-transmitters-and-receivers"/>
44
 *               &lt;enumeration value="optical-slaves"/>
45
 *               &lt;enumeration value="slave-accessories"/>
46
 *             &lt;/restriction>
47
 *           &lt;/simpleType>
48
 *         &lt;/element>
49
 *         &lt;element name="Dedication" minOccurs="0">
50
 *           &lt;simpleType>
51
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
52
 *               &lt;enumeration value="dedicated"/>
53
 *               &lt;enumeration value="non-dedicated"/>
54
 *             &lt;/restriction>
55
 *           &lt;/simpleType>
56
 *         &lt;/element>
57
 *       &lt;/sequence>
58
 *     &lt;/restriction>
59
 *   &lt;/complexContent>
60
 * &lt;/complexType>
61
 * </pre>
62
 * 
63
 * 
64
 */
65
@XmlAccessorType(XmlAccessType.FIELD)
66
@XmlType(name = "", propOrder = {
67
    "flashType",
68
    "slaveFlashes",
69
    "dedication"
70
})
71
@XmlRootElement(name = "Flash")
72
public class Flash {
73
 
74
    @XmlElement(name = "FlashType")
75
    protected String flashType;
76
    @XmlElement(name = "SlaveFlashes")
77
    protected String slaveFlashes;
78
    @XmlElement(name = "Dedication")
79
    protected String dedication;
80
 
81
    /**
82
     * Gets the value of the flashType property.
83
     * 
84
     * @return
85
     *     possible object is
86
     *     {@link String }
87
     *     
88
     */
89
    public String getFlashType() {
90
        return flashType;
91
    }
92
 
93
    /**
94
     * Sets the value of the flashType property.
95
     * 
96
     * @param value
97
     *     allowed object is
98
     *     {@link String }
99
     *     
100
     */
101
    public void setFlashType(String value) {
102
        this.flashType = value;
103
    }
104
 
105
    /**
106
     * Gets the value of the slaveFlashes property.
107
     * 
108
     * @return
109
     *     possible object is
110
     *     {@link String }
111
     *     
112
     */
113
    public String getSlaveFlashes() {
114
        return slaveFlashes;
115
    }
116
 
117
    /**
118
     * Sets the value of the slaveFlashes property.
119
     * 
120
     * @param value
121
     *     allowed object is
122
     *     {@link String }
123
     *     
124
     */
125
    public void setSlaveFlashes(String value) {
126
        this.slaveFlashes = value;
127
    }
128
 
129
    /**
130
     * Gets the value of the dedication property.
131
     * 
132
     * @return
133
     *     possible object is
134
     *     {@link String }
135
     *     
136
     */
137
    public String getDedication() {
138
        return dedication;
139
    }
140
 
141
    /**
142
     * Sets the value of the dedication property.
143
     * 
144
     * @param value
145
     *     allowed object is
146
     *     {@link String }
147
     *     
148
     */
149
    public void setDedication(String value) {
150
        this.dedication = value;
151
    }
152
 
153
}