GLS ShipIT  2.8.11
GLS ShipIT - REST services
TUListResponse.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 import java.util.ArrayList;
10 import java.util.List;
11 
12 
33 @XmlAccessorType(XmlAccessType.FIELD)
34 @XmlType(name = "", propOrder = {
35  "unitItems"
36 })
37 @XmlRootElement(name = "TUListResponse")
38 public class TUListResponse {
39 
40  @XmlElement(name = "UnitItems")
41  protected List<UnitItem> unitItems;
42 
65  public List<UnitItem> getUnitItems() {
66  if (unitItems == null) {
67  unitItems = new ArrayList<UnitItem>();
68  }
69  return this.unitItems;
70  }
71 
72 }