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:57:00 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="DownloadableFileFormat" type="{}FortyStringNotNull"/>
31
 *         &lt;element name="FileSize" type="{}MemorySizeDimension"/>
32
 *       &lt;/sequence>
33
 *     &lt;/restriction>
34
 *   &lt;/complexContent>
35
 * &lt;/complexType>
36
 * </pre>
37
 * 
38
 * 
39
 */
40
@XmlAccessorType(XmlAccessType.FIELD)
41
@XmlType(name = "", propOrder = {
42
    "downloadableFileFormat",
43
    "fileSize"
44
})
45
@XmlRootElement(name = "DownloadableFile")
46
public class DownloadableFile {
47
 
48
    @XmlElement(name = "DownloadableFileFormat", required = true)
49
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
50
    protected String downloadableFileFormat;
51
    @XmlElement(name = "FileSize", required = true)
52
    protected MemorySizeDimension fileSize;
53
 
54
    /**
55
     * Gets the value of the downloadableFileFormat property.
56
     * 
57
     * @return
58
     *     possible object is
59
     *     {@link String }
60
     *     
61
     */
62
    public String getDownloadableFileFormat() {
63
        return downloadableFileFormat;
64
    }
65
 
66
    /**
67
     * Sets the value of the downloadableFileFormat property.
68
     * 
69
     * @param value
70
     *     allowed object is
71
     *     {@link String }
72
     *     
73
     */
74
    public void setDownloadableFileFormat(String value) {
75
        this.downloadableFileFormat = value;
76
    }
77
 
78
    /**
79
     * Gets the value of the fileSize property.
80
     * 
81
     * @return
82
     *     possible object is
83
     *     {@link MemorySizeDimension }
84
     *     
85
     */
86
    public MemorySizeDimension getFileSize() {
87
        return fileSize;
88
    }
89
 
90
    /**
91
     * Sets the value of the fileSize property.
92
     * 
93
     * @param value
94
     *     allowed object is
95
     *     {@link MemorySizeDimension }
96
     *     
97
     */
98
    public void setFileSize(MemorySizeDimension value) {
99
        this.fileSize = value;
100
    }
101
 
102
}