GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
TUListResponse.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.tracking;
3 
4 import java.util.ArrayList;
5 import java.util.List;
6 import javax.xml.bind.annotation.XmlAccessType;
7 import javax.xml.bind.annotation.XmlAccessorType;
8 import javax.xml.bind.annotation.XmlElement;
9 import javax.xml.bind.annotation.XmlRootElement;
10 import javax.xml.bind.annotation.XmlType;
11 
12 
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name = "", propOrder = {
37  "unitItems"
38 })
39 @XmlRootElement(name = "TUListResponse")
40 public class TUListResponse {
41 
42  @XmlElement(name = "UnitItems")
43  protected List<UnitItem> unitItems;
44 
67  public List<UnitItem> getUnitItems() {
68  if (unitItems == null) {
69  unitItems = new ArrayList<UnitItem>();
70  }
71  return this.unitItems;
72  }
73 
74 }