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: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="DocumentVersion">
31
 *           &lt;simpleType>
32
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
33
 *               &lt;pattern value="\d{1,2}\.\d{1,2}"/>
34
 *             &lt;/restriction>
35
 *           &lt;/simpleType>
36
 *         &lt;/element>
37
 *         &lt;element name="MerchantIdentifier" type="{}String"/>
38
 *         &lt;element name="OverrideReleaseId" minOccurs="0">
39
 *           &lt;simpleType>
40
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
41
 *               &lt;pattern value="\d{1,4}\.\d{1,4}"/>
42
 *             &lt;/restriction>
43
 *           &lt;/simpleType>
44
 *         &lt;/element>
45
 *       &lt;/sequence>
46
 *     &lt;/restriction>
47
 *   &lt;/complexContent>
48
 * &lt;/complexType>
49
 * </pre>
50
 * 
51
 * 
52
 */
53
@XmlAccessorType(XmlAccessType.FIELD)
54
@XmlType(name = "", propOrder = {
55
    "documentVersion",
56
    "merchantIdentifier",
57
    "overrideReleaseId"
58
})
59
@XmlRootElement(name = "Header")
60
public class Header {
61
 
62
    @XmlElement(name = "DocumentVersion", required = true)
63
    protected String documentVersion;
64
    @XmlElement(name = "MerchantIdentifier", required = true)
65
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
66
    protected String merchantIdentifier;
67
    @XmlElement(name = "OverrideReleaseId")
68
    protected String overrideReleaseId;
69
 
70
    /**
71
     * Gets the value of the documentVersion property.
72
     * 
73
     * @return
74
     *     possible object is
75
     *     {@link String }
76
     *     
77
     */
78
    public String getDocumentVersion() {
79
        return documentVersion;
80
    }
81
 
82
    /**
83
     * Sets the value of the documentVersion property.
84
     * 
85
     * @param value
86
     *     allowed object is
87
     *     {@link String }
88
     *     
89
     */
90
    public void setDocumentVersion(String value) {
91
        this.documentVersion = value;
92
    }
93
 
94
    /**
95
     * Gets the value of the merchantIdentifier property.
96
     * 
97
     * @return
98
     *     possible object is
99
     *     {@link String }
100
     *     
101
     */
102
    public String getMerchantIdentifier() {
103
        return merchantIdentifier;
104
    }
105
 
106
    /**
107
     * Sets the value of the merchantIdentifier property.
108
     * 
109
     * @param value
110
     *     allowed object is
111
     *     {@link String }
112
     *     
113
     */
114
    public void setMerchantIdentifier(String value) {
115
        this.merchantIdentifier = value;
116
    }
117
 
118
    /**
119
     * Gets the value of the overrideReleaseId property.
120
     * 
121
     * @return
122
     *     possible object is
123
     *     {@link String }
124
     *     
125
     */
126
    public String getOverrideReleaseId() {
127
        return overrideReleaseId;
128
    }
129
 
130
    /**
131
     * Sets the value of the overrideReleaseId property.
132
     * 
133
     * @param value
134
     *     allowed object is
135
     *     {@link String }
136
     *     
137
     */
138
    public void setOverrideReleaseId(String value) {
139
        this.overrideReleaseId = value;
140
    }
141
 
142
}