Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7480 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
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
17
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
18
 
19
 
20
/**
21
 * <p>Java class for anonymous complex type.
22
 * 
23
 * <p>The following schema fragment specifies the expected content contained within this class.
24
 * 
25
 * <pre>
26
 * &lt;complexType>
27
 *   &lt;complexContent>
28
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29
 *       &lt;sequence>
30
 *         &lt;element name="Collection" type="{}StringNotNull" minOccurs="0"/>
31
 *         &lt;element name="EducationalObjective" type="{}StringNotNull" minOccurs="0"/>
32
 *         &lt;element name="Genre" type="{}StringNotNull" minOccurs="0"/>
33
 *         &lt;element name="Rarity" type="{}StringNotNull" minOccurs="0"/>
34
 *         &lt;element name="CardNumber" type="{}StringNotNull" minOccurs="0"/>
35
 *         &lt;element name="CardType" type="{}StringNotNull" minOccurs="0"/>
36
 *       &lt;/sequence>
37
 *     &lt;/restriction>
38
 *   &lt;/complexContent>
39
 * &lt;/complexType>
40
 * </pre>
41
 * 
42
 * 
43
 */
44
@XmlAccessorType(XmlAccessType.FIELD)
45
@XmlType(name = "", propOrder = {
46
    "collection",
47
    "educationalObjective",
48
    "genre",
49
    "rarity",
50
    "cardNumber",
51
    "cardType"
52
})
53
@XmlRootElement(name = "CollectibleCard")
54
public class CollectibleCard {
55
 
56
    @XmlElement(name = "Collection")
57
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
58
    protected String collection;
59
    @XmlElement(name = "EducationalObjective")
60
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
61
    protected String educationalObjective;
62
    @XmlElement(name = "Genre")
63
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
64
    protected String genre;
65
    @XmlElement(name = "Rarity")
66
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
67
    protected String rarity;
68
    @XmlElement(name = "CardNumber")
69
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
70
    protected String cardNumber;
71
    @XmlElement(name = "CardType")
72
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
73
    protected String cardType;
74
 
75
    /**
76
     * Gets the value of the collection property.
77
     * 
78
     * @return
79
     *     possible object is
80
     *     {@link String }
81
     *     
82
     */
83
    public String getCollection() {
84
        return collection;
85
    }
86
 
87
    /**
88
     * Sets the value of the collection property.
89
     * 
90
     * @param value
91
     *     allowed object is
92
     *     {@link String }
93
     *     
94
     */
95
    public void setCollection(String value) {
96
        this.collection = value;
97
    }
98
 
99
    /**
100
     * Gets the value of the educationalObjective property.
101
     * 
102
     * @return
103
     *     possible object is
104
     *     {@link String }
105
     *     
106
     */
107
    public String getEducationalObjective() {
108
        return educationalObjective;
109
    }
110
 
111
    /**
112
     * Sets the value of the educationalObjective property.
113
     * 
114
     * @param value
115
     *     allowed object is
116
     *     {@link String }
117
     *     
118
     */
119
    public void setEducationalObjective(String value) {
120
        this.educationalObjective = value;
121
    }
122
 
123
    /**
124
     * Gets the value of the genre property.
125
     * 
126
     * @return
127
     *     possible object is
128
     *     {@link String }
129
     *     
130
     */
131
    public String getGenre() {
132
        return genre;
133
    }
134
 
135
    /**
136
     * Sets the value of the genre property.
137
     * 
138
     * @param value
139
     *     allowed object is
140
     *     {@link String }
141
     *     
142
     */
143
    public void setGenre(String value) {
144
        this.genre = value;
145
    }
146
 
147
    /**
148
     * Gets the value of the rarity property.
149
     * 
150
     * @return
151
     *     possible object is
152
     *     {@link String }
153
     *     
154
     */
155
    public String getRarity() {
156
        return rarity;
157
    }
158
 
159
    /**
160
     * Sets the value of the rarity property.
161
     * 
162
     * @param value
163
     *     allowed object is
164
     *     {@link String }
165
     *     
166
     */
167
    public void setRarity(String value) {
168
        this.rarity = value;
169
    }
170
 
171
    /**
172
     * Gets the value of the cardNumber property.
173
     * 
174
     * @return
175
     *     possible object is
176
     *     {@link String }
177
     *     
178
     */
179
    public String getCardNumber() {
180
        return cardNumber;
181
    }
182
 
183
    /**
184
     * Sets the value of the cardNumber property.
185
     * 
186
     * @param value
187
     *     allowed object is
188
     *     {@link String }
189
     *     
190
     */
191
    public void setCardNumber(String value) {
192
        this.cardNumber = value;
193
    }
194
 
195
    /**
196
     * Gets the value of the cardType property.
197
     * 
198
     * @return
199
     *     possible object is
200
     *     {@link String }
201
     *     
202
     */
203
    public String getCardType() {
204
        return cardType;
205
    }
206
 
207
    /**
208
     * Sets the value of the cardType property.
209
     * 
210
     * @param value
211
     *     allowed object is
212
     *     {@link String }
213
     *     
214
     */
215
    public void setCardType(String value) {
216
        this.cardType = value;
217
    }
218
 
219
}