GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
PODResponse.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.tracking;
3 
4 import javax.xml.bind.annotation.XmlAccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlElement;
7 import javax.xml.bind.annotation.XmlRootElement;
8 import javax.xml.bind.annotation.XmlType;
9 
10 
33 @XmlAccessorType(XmlAccessType.FIELD)
34 @XmlType(name = "", propOrder = {
35  "podItem"
36 })
37 @XmlRootElement(name = "PODResponse")
38 public class PODResponse {
39 
40  @XmlElement(name = "PODItem", required = true)
41  protected PODItem podItem;
42 
51  public PODItem getPODItem() {
52  return podItem;
53  }
54 
63  public void setPODItem(PODItem value) {
64  this.podItem = value;
65  }
66 
67 }