| 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 |
* <complexType>
|
|
|
27 |
* <complexContent>
|
|
|
28 |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
|
29 |
* <sequence>
|
|
|
30 |
* <element name="DocumentVersion">
|
|
|
31 |
* <simpleType>
|
|
|
32 |
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
|
|
33 |
* <pattern value="\d{1,2}\.\d{1,2}"/>
|
|
|
34 |
* </restriction>
|
|
|
35 |
* </simpleType>
|
|
|
36 |
* </element>
|
|
|
37 |
* <element name="MerchantIdentifier" type="{}String"/>
|
|
|
38 |
* <element name="OverrideReleaseId" minOccurs="0">
|
|
|
39 |
* <simpleType>
|
|
|
40 |
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
|
|
41 |
* <pattern value="\d{1,4}\.\d{1,4}"/>
|
|
|
42 |
* </restriction>
|
|
|
43 |
* </simpleType>
|
|
|
44 |
* </element>
|
|
|
45 |
* </sequence>
|
|
|
46 |
* </restriction>
|
|
|
47 |
* </complexContent>
|
|
|
48 |
* </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 |
}
|