/CLOMWEB/src/com/movilnet/dhl/ship_val_req/ShipmentValidateRequest.java

http://clom2.googlecode.com/ · Java · 508 lines · 158 code · 36 blank · 314 comment · 6 complexity · 2d93110d7aff45b4d5ec8b2d969a10a3 MD5 · raw file

  1. //
  2. // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.3-hudson-jaxb-ri-2.2.3-3-
  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: 2011.07.27 at 12:52:20 PM BOT
  6. //
  7. package com.movilnet.dhl.ship_val_req;
  8. import java.util.ArrayList;
  9. import java.util.List;
  10. import javax.xml.bind.annotation.XmlAccessType;
  11. import javax.xml.bind.annotation.XmlAccessorType;
  12. import javax.xml.bind.annotation.XmlElement;
  13. import javax.xml.bind.annotation.XmlRootElement;
  14. import javax.xml.bind.annotation.XmlType;
  15. /**
  16. * <p>Java class for anonymous complex type.
  17. *
  18. * <p>The following schema fragment specifies the expected content contained within this class.
  19. *
  20. * <pre>
  21. * &lt;complexType>
  22. * &lt;complexContent>
  23. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  24. * &lt;sequence>
  25. * &lt;element name="Request" type="{http://www.dhl.com/datatypes}Request"/>
  26. * &lt;element name="RequestedPickupTime" type="{http://www.dhl.com/datatypes}YesNo"/>
  27. * &lt;element name="NewShipper" type="{http://www.dhl.com/datatypes}YesNo"/>
  28. * &lt;element name="LanguageCode" type="{http://www.dhl.com/datatypes}LanguageCode"/>
  29. * &lt;element name="PiecesEnabled" type="{http://www.dhl.com/datatypes}PiecesEnabled"/>
  30. * &lt;element name="Billing" type="{http://www.dhl.com/datatypes}Billing"/>
  31. * &lt;element name="Consignee" type="{http://www.dhl.com/datatypes}Consignee"/>
  32. * &lt;element name="Commodity" type="{http://www.dhl.com/datatypes}Commodity" maxOccurs="unbounded" minOccurs="0"/>
  33. * &lt;element name="Dutiable" type="{http://www.dhl.com/datatypes}Dutiable" minOccurs="0"/>
  34. * &lt;element name="ExportDeclaration" type="{http://www.dhl.com/datatypes}ExportDeclaration" minOccurs="0"/>
  35. * &lt;element name="Reference" type="{http://www.dhl.com/datatypes}Reference" maxOccurs="unbounded" minOccurs="0"/>
  36. * &lt;element name="ShipmentDetails" type="{http://www.dhl.com/datatypes}ShipmentDetails"/>
  37. * &lt;element name="Shipper" type="{http://www.dhl.com/datatypes}Shipper"/>
  38. * &lt;element name="SpecialService" type="{http://www.dhl.com/datatypes}SpecialService" maxOccurs="10" minOccurs="0"/>
  39. * &lt;element name="Place" type="{http://www.dhl.com/datatypes}Place" minOccurs="0"/>
  40. * &lt;element name="EProcShip" type="{http://www.dhl.com/datatypes}YesNo" minOccurs="0"/>
  41. * &lt;/sequence>
  42. * &lt;/restriction>
  43. * &lt;/complexContent>
  44. * &lt;/complexType>
  45. * </pre>
  46. *
  47. *
  48. */
  49. @XmlAccessorType(XmlAccessType.FIELD)
  50. @XmlType(name = "", propOrder = {
  51. "request",
  52. "requestedPickupTime",
  53. "newShipper",
  54. "languageCode",
  55. "piecesEnabled",
  56. "billing",
  57. "consignee",
  58. "commodity",
  59. "dutiable",
  60. "exportDeclaration",
  61. "reference",
  62. "shipmentDetails",
  63. "shipper",
  64. "specialService",
  65. "place",
  66. "eProcShip"
  67. })
  68. @XmlRootElement(name = "ShipmentValidateRequest", namespace = "http://www.dhl.com")
  69. public class ShipmentValidateRequest {
  70. @XmlElement(name = "Request", required = true)
  71. protected Request request;
  72. @XmlElement(name = "RequestedPickupTime", required = true)
  73. protected YesNo requestedPickupTime;
  74. @XmlElement(name = "NewShipper", required = true)
  75. protected YesNo newShipper;
  76. @XmlElement(name = "LanguageCode", required = true)
  77. protected String languageCode;
  78. @XmlElement(name = "PiecesEnabled", required = true, defaultValue = "Y")
  79. protected PiecesEnabled piecesEnabled;
  80. @XmlElement(name = "Billing", required = true)
  81. protected Billing billing;
  82. @XmlElement(name = "Consignee", required = true)
  83. protected Consignee consignee;
  84. @XmlElement(name = "Commodity")
  85. protected List<Commodity> commodity;
  86. @XmlElement(name = "Dutiable")
  87. protected Dutiable dutiable;
  88. @XmlElement(name = "ExportDeclaration")
  89. protected ExportDeclaration exportDeclaration;
  90. @XmlElement(name = "Reference")
  91. protected List<Reference> reference;
  92. @XmlElement(name = "ShipmentDetails", required = true)
  93. protected ShipmentDetails shipmentDetails;
  94. @XmlElement(name = "Shipper", required = true)
  95. protected Shipper shipper;
  96. @XmlElement(name = "SpecialService")
  97. protected List<SpecialService> specialService;
  98. @XmlElement(name = "Place")
  99. protected Place place;
  100. @XmlElement(name = "EProcShip")
  101. protected YesNo eProcShip;
  102. /**
  103. * Gets the value of the request property.
  104. *
  105. * @return
  106. * possible object is
  107. * {@link Request }
  108. *
  109. */
  110. public Request getRequest() {
  111. return request;
  112. }
  113. /**
  114. * Sets the value of the request property.
  115. *
  116. * @param value
  117. * allowed object is
  118. * {@link Request }
  119. *
  120. */
  121. public void setRequest(Request value) {
  122. this.request = value;
  123. }
  124. /**
  125. * Gets the value of the requestedPickupTime property.
  126. *
  127. * @return
  128. * possible object is
  129. * {@link YesNo }
  130. *
  131. */
  132. public YesNo getRequestedPickupTime() {
  133. return requestedPickupTime;
  134. }
  135. /**
  136. * Sets the value of the requestedPickupTime property.
  137. *
  138. * @param value
  139. * allowed object is
  140. * {@link YesNo }
  141. *
  142. */
  143. public void setRequestedPickupTime(YesNo value) {
  144. this.requestedPickupTime = value;
  145. }
  146. /**
  147. * Gets the value of the newShipper property.
  148. *
  149. * @return
  150. * possible object is
  151. * {@link YesNo }
  152. *
  153. */
  154. public YesNo getNewShipper() {
  155. return newShipper;
  156. }
  157. /**
  158. * Sets the value of the newShipper property.
  159. *
  160. * @param value
  161. * allowed object is
  162. * {@link YesNo }
  163. *
  164. */
  165. public void setNewShipper(YesNo value) {
  166. this.newShipper = value;
  167. }
  168. /**
  169. * Gets the value of the languageCode property.
  170. *
  171. * @return
  172. * possible object is
  173. * {@link String }
  174. *
  175. */
  176. public String getLanguageCode() {
  177. return languageCode;
  178. }
  179. /**
  180. * Sets the value of the languageCode property.
  181. *
  182. * @param value
  183. * allowed object is
  184. * {@link String }
  185. *
  186. */
  187. public void setLanguageCode(String value) {
  188. this.languageCode = value;
  189. }
  190. /**
  191. * Gets the value of the piecesEnabled property.
  192. *
  193. * @return
  194. * possible object is
  195. * {@link PiecesEnabled }
  196. *
  197. */
  198. public PiecesEnabled getPiecesEnabled() {
  199. return piecesEnabled;
  200. }
  201. /**
  202. * Sets the value of the piecesEnabled property.
  203. *
  204. * @param value
  205. * allowed object is
  206. * {@link PiecesEnabled }
  207. *
  208. */
  209. public void setPiecesEnabled(PiecesEnabled value) {
  210. this.piecesEnabled = value;
  211. }
  212. /**
  213. * Gets the value of the billing property.
  214. *
  215. * @return
  216. * possible object is
  217. * {@link Billing }
  218. *
  219. */
  220. public Billing getBilling() {
  221. return billing;
  222. }
  223. /**
  224. * Sets the value of the billing property.
  225. *
  226. * @param value
  227. * allowed object is
  228. * {@link Billing }
  229. *
  230. */
  231. public void setBilling(Billing value) {
  232. this.billing = value;
  233. }
  234. /**
  235. * Gets the value of the consignee property.
  236. *
  237. * @return
  238. * possible object is
  239. * {@link Consignee }
  240. *
  241. */
  242. public Consignee getConsignee() {
  243. return consignee;
  244. }
  245. /**
  246. * Sets the value of the consignee property.
  247. *
  248. * @param value
  249. * allowed object is
  250. * {@link Consignee }
  251. *
  252. */
  253. public void setConsignee(Consignee value) {
  254. this.consignee = value;
  255. }
  256. /**
  257. * Gets the value of the commodity property.
  258. *
  259. * <p>
  260. * This accessor method returns a reference to the live list,
  261. * not a snapshot. Therefore any modification you make to the
  262. * returned list will be present inside the JAXB object.
  263. * This is why there is not a <CODE>set</CODE> method for the commodity property.
  264. *
  265. * <p>
  266. * For example, to add a new item, do as follows:
  267. * <pre>
  268. * getCommodity().add(newItem);
  269. * </pre>
  270. *
  271. *
  272. * <p>
  273. * Objects of the following type(s) are allowed in the list
  274. * {@link Commodity }
  275. *
  276. *
  277. */
  278. public List<Commodity> getCommodity() {
  279. if (commodity == null) {
  280. commodity = new ArrayList<Commodity>();
  281. }
  282. return this.commodity;
  283. }
  284. /**
  285. * Gets the value of the dutiable property.
  286. *
  287. * @return
  288. * possible object is
  289. * {@link Dutiable }
  290. *
  291. */
  292. public Dutiable getDutiable() {
  293. return dutiable;
  294. }
  295. /**
  296. * Sets the value of the dutiable property.
  297. *
  298. * @param value
  299. * allowed object is
  300. * {@link Dutiable }
  301. *
  302. */
  303. public void setDutiable(Dutiable value) {
  304. this.dutiable = value;
  305. }
  306. /**
  307. * Gets the value of the exportDeclaration property.
  308. *
  309. * @return
  310. * possible object is
  311. * {@link ExportDeclaration }
  312. *
  313. */
  314. public ExportDeclaration getExportDeclaration() {
  315. return exportDeclaration;
  316. }
  317. /**
  318. * Sets the value of the exportDeclaration property.
  319. *
  320. * @param value
  321. * allowed object is
  322. * {@link ExportDeclaration }
  323. *
  324. */
  325. public void setExportDeclaration(ExportDeclaration value) {
  326. this.exportDeclaration = value;
  327. }
  328. /**
  329. * Gets the value of the reference property.
  330. *
  331. * <p>
  332. * This accessor method returns a reference to the live list,
  333. * not a snapshot. Therefore any modification you make to the
  334. * returned list will be present inside the JAXB object.
  335. * This is why there is not a <CODE>set</CODE> method for the reference property.
  336. *
  337. * <p>
  338. * For example, to add a new item, do as follows:
  339. * <pre>
  340. * getReference().add(newItem);
  341. * </pre>
  342. *
  343. *
  344. * <p>
  345. * Objects of the following type(s) are allowed in the list
  346. * {@link Reference }
  347. *
  348. *
  349. */
  350. public List<Reference> getReference() {
  351. if (reference == null) {
  352. reference = new ArrayList<Reference>();
  353. }
  354. return this.reference;
  355. }
  356. /**
  357. * Gets the value of the shipmentDetails property.
  358. *
  359. * @return
  360. * possible object is
  361. * {@link ShipmentDetails }
  362. *
  363. */
  364. public ShipmentDetails getShipmentDetails() {
  365. return shipmentDetails;
  366. }
  367. /**
  368. * Sets the value of the shipmentDetails property.
  369. *
  370. * @param value
  371. * allowed object is
  372. * {@link ShipmentDetails }
  373. *
  374. */
  375. public void setShipmentDetails(ShipmentDetails value) {
  376. this.shipmentDetails = value;
  377. }
  378. /**
  379. * Gets the value of the shipper property.
  380. *
  381. * @return
  382. * possible object is
  383. * {@link Shipper }
  384. *
  385. */
  386. public Shipper getShipper() {
  387. return shipper;
  388. }
  389. /**
  390. * Sets the value of the shipper property.
  391. *
  392. * @param value
  393. * allowed object is
  394. * {@link Shipper }
  395. *
  396. */
  397. public void setShipper(Shipper value) {
  398. this.shipper = value;
  399. }
  400. /**
  401. * Gets the value of the specialService property.
  402. *
  403. * <p>
  404. * This accessor method returns a reference to the live list,
  405. * not a snapshot. Therefore any modification you make to the
  406. * returned list will be present inside the JAXB object.
  407. * This is why there is not a <CODE>set</CODE> method for the specialService property.
  408. *
  409. * <p>
  410. * For example, to add a new item, do as follows:
  411. * <pre>
  412. * getSpecialService().add(newItem);
  413. * </pre>
  414. *
  415. *
  416. * <p>
  417. * Objects of the following type(s) are allowed in the list
  418. * {@link SpecialService }
  419. *
  420. *
  421. */
  422. public List<SpecialService> getSpecialService() {
  423. if (specialService == null) {
  424. specialService = new ArrayList<SpecialService>();
  425. }
  426. return this.specialService;
  427. }
  428. /**
  429. * Gets the value of the place property.
  430. *
  431. * @return
  432. * possible object is
  433. * {@link Place }
  434. *
  435. */
  436. public Place getPlace() {
  437. return place;
  438. }
  439. /**
  440. * Sets the value of the place property.
  441. *
  442. * @param value
  443. * allowed object is
  444. * {@link Place }
  445. *
  446. */
  447. public void setPlace(Place value) {
  448. this.place = value;
  449. }
  450. /**
  451. * Gets the value of the eProcShip property.
  452. *
  453. * @return
  454. * possible object is
  455. * {@link YesNo }
  456. *
  457. */
  458. public YesNo getEProcShip() {
  459. return eProcShip;
  460. }
  461. /**
  462. * Sets the value of the eProcShip property.
  463. *
  464. * @param value
  465. * allowed object is
  466. * {@link YesNo }
  467. *
  468. */
  469. public void setEProcShip(YesNo value) {
  470. this.eProcShip = value;
  471. }
  472. }