GLS ShipIT 4.0.f2
GLS ShipIT - REST services
Loading...
Searching...
No Matches
TUListResponse.java
Go to the documentation of this file.
1
2package eu.glsgroup.fpcs.datatypes.soap.v1.tracking;
3
4import java.util.ArrayList;
5import java.util.List;
6import javax.xml.bind.annotation.XmlAccessType;
7import javax.xml.bind.annotation.XmlAccessorType;
8import javax.xml.bind.annotation.XmlElement;
9import javax.xml.bind.annotation.XmlRootElement;
10import javax.xml.bind.annotation.XmlType;
11
12
35@XmlAccessorType(XmlAccessType.FIELD)
36@XmlType(name = "", propOrder = {
37 "unitItems"
38})
39@XmlRootElement(name = "TUListResponse")
40public 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}