| 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 java.util.ArrayList;
|
|
|
12 |
import java.util.List;
|
|
|
13 |
import javax.xml.bind.annotation.XmlAccessType;
|
|
|
14 |
import javax.xml.bind.annotation.XmlAccessorType;
|
|
|
15 |
import javax.xml.bind.annotation.XmlElement;
|
|
|
16 |
import javax.xml.bind.annotation.XmlRootElement;
|
|
|
17 |
import javax.xml.bind.annotation.XmlType;
|
|
|
18 |
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
|
|
|
19 |
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
|
|
|
20 |
|
|
|
21 |
|
|
|
22 |
/**
|
|
|
23 |
* <p>Java class for anonymous complex type.
|
|
|
24 |
*
|
|
|
25 |
* <p>The following schema fragment specifies the expected content contained within this class.
|
|
|
26 |
*
|
|
|
27 |
* <pre>
|
|
|
28 |
* <complexType>
|
|
|
29 |
* <complexContent>
|
|
|
30 |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
|
31 |
* <sequence>
|
|
|
32 |
* <element name="CompatiblePhoneModels" type="{}StringNotNull" maxOccurs="18" minOccurs="0"/>
|
|
|
33 |
* <element name="ManufacturerName" type="{}StringNotNull" minOccurs="0"/>
|
|
|
34 |
* <element name="AdditionalFeatures" type="{}LongStringNotNull" minOccurs="0"/>
|
|
|
35 |
* <element name="Keywords" type="{}StringNotNull" maxOccurs="5" minOccurs="0"/>
|
|
|
36 |
* <element name="ApplicationVersion" type="{}StringNotNull" minOccurs="0"/>
|
|
|
37 |
* </sequence>
|
|
|
38 |
* </restriction>
|
|
|
39 |
* </complexContent>
|
|
|
40 |
* </complexType>
|
|
|
41 |
* </pre>
|
|
|
42 |
*
|
|
|
43 |
*
|
|
|
44 |
*/
|
|
|
45 |
@XmlAccessorType(XmlAccessType.FIELD)
|
|
|
46 |
@XmlType(name = "", propOrder = {
|
|
|
47 |
"compatiblePhoneModels",
|
|
|
48 |
"manufacturerName",
|
|
|
49 |
"additionalFeatures",
|
|
|
50 |
"keywords",
|
|
|
51 |
"applicationVersion"
|
|
|
52 |
})
|
|
|
53 |
@XmlRootElement(name = "WirelessDownloads")
|
|
|
54 |
public class WirelessDownloads {
|
|
|
55 |
|
|
|
56 |
@XmlElement(name = "CompatiblePhoneModels")
|
|
|
57 |
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
|
|
|
58 |
protected List<String> compatiblePhoneModels;
|
|
|
59 |
@XmlElement(name = "ManufacturerName")
|
|
|
60 |
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
|
|
|
61 |
protected String manufacturerName;
|
|
|
62 |
@XmlElement(name = "AdditionalFeatures")
|
|
|
63 |
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
|
|
|
64 |
protected String additionalFeatures;
|
|
|
65 |
@XmlElement(name = "Keywords")
|
|
|
66 |
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
|
|
|
67 |
protected List<String> keywords;
|
|
|
68 |
@XmlElement(name = "ApplicationVersion")
|
|
|
69 |
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
|
|
|
70 |
protected String applicationVersion;
|
|
|
71 |
|
|
|
72 |
/**
|
|
|
73 |
* Gets the value of the compatiblePhoneModels property.
|
|
|
74 |
*
|
|
|
75 |
* <p>
|
|
|
76 |
* This accessor method returns a reference to the live list,
|
|
|
77 |
* not a snapshot. Therefore any modification you make to the
|
|
|
78 |
* returned list will be present inside the JAXB object.
|
|
|
79 |
* This is why there is not a <CODE>set</CODE> method for the compatiblePhoneModels property.
|
|
|
80 |
*
|
|
|
81 |
* <p>
|
|
|
82 |
* For example, to add a new item, do as follows:
|
|
|
83 |
* <pre>
|
|
|
84 |
* getCompatiblePhoneModels().add(newItem);
|
|
|
85 |
* </pre>
|
|
|
86 |
*
|
|
|
87 |
*
|
|
|
88 |
* <p>
|
|
|
89 |
* Objects of the following type(s) are allowed in the list
|
|
|
90 |
* {@link String }
|
|
|
91 |
*
|
|
|
92 |
*
|
|
|
93 |
*/
|
|
|
94 |
public List<String> getCompatiblePhoneModels() {
|
|
|
95 |
if (compatiblePhoneModels == null) {
|
|
|
96 |
compatiblePhoneModels = new ArrayList<String>();
|
|
|
97 |
}
|
|
|
98 |
return this.compatiblePhoneModels;
|
|
|
99 |
}
|
|
|
100 |
|
|
|
101 |
/**
|
|
|
102 |
* Gets the value of the manufacturerName property.
|
|
|
103 |
*
|
|
|
104 |
* @return
|
|
|
105 |
* possible object is
|
|
|
106 |
* {@link String }
|
|
|
107 |
*
|
|
|
108 |
*/
|
|
|
109 |
public String getManufacturerName() {
|
|
|
110 |
return manufacturerName;
|
|
|
111 |
}
|
|
|
112 |
|
|
|
113 |
/**
|
|
|
114 |
* Sets the value of the manufacturerName property.
|
|
|
115 |
*
|
|
|
116 |
* @param value
|
|
|
117 |
* allowed object is
|
|
|
118 |
* {@link String }
|
|
|
119 |
*
|
|
|
120 |
*/
|
|
|
121 |
public void setManufacturerName(String value) {
|
|
|
122 |
this.manufacturerName = value;
|
|
|
123 |
}
|
|
|
124 |
|
|
|
125 |
/**
|
|
|
126 |
* Gets the value of the additionalFeatures property.
|
|
|
127 |
*
|
|
|
128 |
* @return
|
|
|
129 |
* possible object is
|
|
|
130 |
* {@link String }
|
|
|
131 |
*
|
|
|
132 |
*/
|
|
|
133 |
public String getAdditionalFeatures() {
|
|
|
134 |
return additionalFeatures;
|
|
|
135 |
}
|
|
|
136 |
|
|
|
137 |
/**
|
|
|
138 |
* Sets the value of the additionalFeatures property.
|
|
|
139 |
*
|
|
|
140 |
* @param value
|
|
|
141 |
* allowed object is
|
|
|
142 |
* {@link String }
|
|
|
143 |
*
|
|
|
144 |
*/
|
|
|
145 |
public void setAdditionalFeatures(String value) {
|
|
|
146 |
this.additionalFeatures = value;
|
|
|
147 |
}
|
|
|
148 |
|
|
|
149 |
/**
|
|
|
150 |
* Gets the value of the keywords property.
|
|
|
151 |
*
|
|
|
152 |
* <p>
|
|
|
153 |
* This accessor method returns a reference to the live list,
|
|
|
154 |
* not a snapshot. Therefore any modification you make to the
|
|
|
155 |
* returned list will be present inside the JAXB object.
|
|
|
156 |
* This is why there is not a <CODE>set</CODE> method for the keywords property.
|
|
|
157 |
*
|
|
|
158 |
* <p>
|
|
|
159 |
* For example, to add a new item, do as follows:
|
|
|
160 |
* <pre>
|
|
|
161 |
* getKeywords().add(newItem);
|
|
|
162 |
* </pre>
|
|
|
163 |
*
|
|
|
164 |
*
|
|
|
165 |
* <p>
|
|
|
166 |
* Objects of the following type(s) are allowed in the list
|
|
|
167 |
* {@link String }
|
|
|
168 |
*
|
|
|
169 |
*
|
|
|
170 |
*/
|
|
|
171 |
public List<String> getKeywords() {
|
|
|
172 |
if (keywords == null) {
|
|
|
173 |
keywords = new ArrayList<String>();
|
|
|
174 |
}
|
|
|
175 |
return this.keywords;
|
|
|
176 |
}
|
|
|
177 |
|
|
|
178 |
/**
|
|
|
179 |
* Gets the value of the applicationVersion property.
|
|
|
180 |
*
|
|
|
181 |
* @return
|
|
|
182 |
* possible object is
|
|
|
183 |
* {@link String }
|
|
|
184 |
*
|
|
|
185 |
*/
|
|
|
186 |
public String getApplicationVersion() {
|
|
|
187 |
return applicationVersion;
|
|
|
188 |
}
|
|
|
189 |
|
|
|
190 |
/**
|
|
|
191 |
* Sets the value of the applicationVersion property.
|
|
|
192 |
*
|
|
|
193 |
* @param value
|
|
|
194 |
* allowed object is
|
|
|
195 |
* {@link String }
|
|
|
196 |
*
|
|
|
197 |
*/
|
|
|
198 |
public void setApplicationVersion(String value) {
|
|
|
199 |
this.applicationVersion = value;
|
|
|
200 |
}
|
|
|
201 |
|
|
|
202 |
}
|