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: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
 
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="Type">
29
 *           &lt;simpleType>
30
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
31
 *               &lt;enumeration value="ISBN"/>
32
 *               &lt;enumeration value="UPC"/>
33
 *               &lt;enumeration value="EAN"/>
34
 *               &lt;enumeration value="ASIN"/>
35
 *               &lt;enumeration value="GTIN"/>
36
 *               &lt;enumeration value="GCID"/>
37
 *               &lt;enumeration value="PZN"/>
38
 *             &lt;/restriction>
39
 *           &lt;/simpleType>
40
 *         &lt;/element>
41
 *         &lt;element name="Value">
42
 *           &lt;simpleType>
43
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
44
 *               &lt;minLength value="8"/>
45
 *               &lt;maxLength value="16"/>
46
 *             &lt;/restriction>
47
 *           &lt;/simpleType>
48
 *         &lt;/element>
49
 *       &lt;/sequence>
50
 *     &lt;/restriction>
51
 *   &lt;/complexContent>
52
 * &lt;/complexType>
53
 * </pre>
54
 * 
55
 * 
56
 */
57
@XmlAccessorType(XmlAccessType.FIELD)
58
@XmlType(name = "", propOrder = {
59
    "type",
60
    "value"
61
})
62
@XmlRootElement(name = "StandardProductID")
63
public class StandardProductID {
64
 
65
    @XmlElement(name = "Type", required = true)
66
    protected String type;
67
    @XmlElement(name = "Value", required = true)
68
    protected String value;
69
 
70
    /**
71
     * Gets the value of the type property.
72
     * 
73
     * @return
74
     *     possible object is
75
     *     {@link String }
76
     *     
77
     */
78
    public String getType() {
79
        return type;
80
    }
81
 
82
    /**
83
     * Sets the value of the type property.
84
     * 
85
     * @param value
86
     *     allowed object is
87
     *     {@link String }
88
     *     
89
     */
90
    public void setType(String value) {
91
        this.type = value;
92
    }
93
 
94
    /**
95
     * Gets the value of the value property.
96
     * 
97
     * @return
98
     *     possible object is
99
     *     {@link String }
100
     *     
101
     */
102
    public String getValue() {
103
        return value;
104
    }
105
 
106
    /**
107
     * Sets the value of the value property.
108
     * 
109
     * @param value
110
     *     allowed object is
111
     *     {@link String }
112
     *     
113
     */
114
    public void setValue(String value) {
115
        this.value = value;
116
    }
117
 
118
}