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="ProductType">
29
 *           &lt;complexType>
30
 *             &lt;complexContent>
31
 *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
32
 *                 &lt;choice>
33
 *                   &lt;element ref="{}VideoDVD"/>
34
 *                   &lt;element ref="{}VideoVHS"/>
35
 *                 &lt;/choice>
36
 *               &lt;/restriction>
37
 *             &lt;/complexContent>
38
 *           &lt;/complexType>
39
 *         &lt;/element>
40
 *       &lt;/sequence>
41
 *     &lt;/restriction>
42
 *   &lt;/complexContent>
43
 * &lt;/complexType>
44
 * </pre>
45
 * 
46
 * 
47
 */
48
@XmlAccessorType(XmlAccessType.FIELD)
49
@XmlType(name = "", propOrder = {
50
    "productType"
51
})
52
@XmlRootElement(name = "Video")
53
public class Video {
54
 
55
    @XmlElement(name = "ProductType", required = true)
56
    protected Video.ProductType productType;
57
 
58
    /**
59
     * Gets the value of the productType property.
60
     * 
61
     * @return
62
     *     possible object is
63
     *     {@link Video.ProductType }
64
     *     
65
     */
66
    public Video.ProductType getProductType() {
67
        return productType;
68
    }
69
 
70
    /**
71
     * Sets the value of the productType property.
72
     * 
73
     * @param value
74
     *     allowed object is
75
     *     {@link Video.ProductType }
76
     *     
77
     */
78
    public void setProductType(Video.ProductType value) {
79
        this.productType = value;
80
    }
81
 
82
 
83
    /**
84
     * <p>Java class for anonymous complex type.
85
     * 
86
     * <p>The following schema fragment specifies the expected content contained within this class.
87
     * 
88
     * <pre>
89
     * &lt;complexType>
90
     *   &lt;complexContent>
91
     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
92
     *       &lt;choice>
93
     *         &lt;element ref="{}VideoDVD"/>
94
     *         &lt;element ref="{}VideoVHS"/>
95
     *       &lt;/choice>
96
     *     &lt;/restriction>
97
     *   &lt;/complexContent>
98
     * &lt;/complexType>
99
     * </pre>
100
     * 
101
     * 
102
     */
103
    @XmlAccessorType(XmlAccessType.FIELD)
104
    @XmlType(name = "", propOrder = {
105
        "videoDVD",
106
        "videoVHS"
107
    })
108
    public static class ProductType {
109
 
110
        @XmlElement(name = "VideoDVD")
111
        protected VideoDVD videoDVD;
112
        @XmlElement(name = "VideoVHS")
113
        protected VideoVHS videoVHS;
114
 
115
        /**
116
         * Gets the value of the videoDVD property.
117
         * 
118
         * @return
119
         *     possible object is
120
         *     {@link VideoDVD }
121
         *     
122
         */
123
        public VideoDVD getVideoDVD() {
124
            return videoDVD;
125
        }
126
 
127
        /**
128
         * Sets the value of the videoDVD property.
129
         * 
130
         * @param value
131
         *     allowed object is
132
         *     {@link VideoDVD }
133
         *     
134
         */
135
        public void setVideoDVD(VideoDVD value) {
136
            this.videoDVD = value;
137
        }
138
 
139
        /**
140
         * Gets the value of the videoVHS property.
141
         * 
142
         * @return
143
         *     possible object is
144
         *     {@link VideoVHS }
145
         *     
146
         */
147
        public VideoVHS getVideoVHS() {
148
            return videoVHS;
149
        }
150
 
151
        /**
152
         * Sets the value of the videoVHS property.
153
         * 
154
         * @param value
155
         *     allowed object is
156
         *     {@link VideoVHS }
157
         *     
158
         */
159
        public void setVideoVHS(VideoVHS value) {
160
            this.videoVHS = value;
161
        }
162
 
163
    }
164
 
165
}