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
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="HolderCapacity" type="{}TwentyStringNotNull" minOccurs="0"/>
31
 *       &lt;/sequence>
32
 *     &lt;/restriction>
33
 *   &lt;/complexContent>
34
 * &lt;/complexType>
35
 * </pre>
36
 * 
37
 * 
38
 */
39
@XmlAccessorType(XmlAccessType.FIELD)
40
@XmlType(name = "", propOrder = {
41
    "holderCapacity"
42
})
43
@XmlRootElement(name = "MediaStorage")
44
public class MediaStorage {
45
 
46
    @XmlElement(name = "HolderCapacity")
47
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
48
    protected String holderCapacity;
49
 
50
    /**
51
     * Gets the value of the holderCapacity property.
52
     * 
53
     * @return
54
     *     possible object is
55
     *     {@link String }
56
     *     
57
     */
58
    public String getHolderCapacity() {
59
        return holderCapacity;
60
    }
61
 
62
    /**
63
     * Sets the value of the holderCapacity property.
64
     * 
65
     * @param value
66
     *     allowed object is
67
     *     {@link String }
68
     *     
69
     */
70
    public void setHolderCapacity(String value) {
71
        this.holderCapacity = value;
72
    }
73
 
74
}