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="Parentage">
29
 *           &lt;simpleType>
30
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
31
 *               &lt;enumeration value="parent"/>
32
 *               &lt;enumeration value="child"/>
33
 *             &lt;/restriction>
34
 *           &lt;/simpleType>
35
 *         &lt;/element>
36
 *         &lt;element name="VariationTheme" minOccurs="0">
37
 *           &lt;simpleType>
38
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
39
 *             &lt;/restriction>
40
 *           &lt;/simpleType>
41
 *         &lt;/element>
42
 *       &lt;/sequence>
43
 *     &lt;/restriction>
44
 *   &lt;/complexContent>
45
 * &lt;/complexType>
46
 * </pre>
47
 * 
48
 * 
49
 */
50
@XmlAccessorType(XmlAccessType.FIELD)
51
@XmlType(name = "", propOrder = {
52
    "parentage",
53
    "variationTheme"
54
})
55
@XmlRootElement(name = "VariationData")
56
public class VariationData {
57
 
58
    @XmlElement(name = "Parentage", required = true)
59
    protected String parentage;
60
    @XmlElement(name = "VariationTheme")
61
    protected String variationTheme;
62
 
63
    /**
64
     * Gets the value of the parentage property.
65
     * 
66
     * @return
67
     *     possible object is
68
     *     {@link String }
69
     *     
70
     */
71
    public String getParentage() {
72
        return parentage;
73
    }
74
 
75
    /**
76
     * Sets the value of the parentage property.
77
     * 
78
     * @param value
79
     *     allowed object is
80
     *     {@link String }
81
     *     
82
     */
83
    public void setParentage(String value) {
84
        this.parentage = value;
85
    }
86
 
87
    /**
88
     * Gets the value of the variationTheme property.
89
     * 
90
     * @return
91
     *     possible object is
92
     *     {@link String }
93
     *     
94
     */
95
    public String getVariationTheme() {
96
        return variationTheme;
97
    }
98
 
99
    /**
100
     * Sets the value of the variationTheme property.
101
     * 
102
     * @param value
103
     *     allowed object is
104
     *     {@link String }
105
     *     
106
     */
107
    public void setVariationTheme(String value) {
108
        this.variationTheme = value;
109
    }
110
 
111
}