GLS ShipIT  2.8.11
GLS ShipIT - REST services
EndOfDayResponse.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.shipmentprocessing;
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 
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name = "", propOrder = {
37  "shipments"
38 })
39 @XmlRootElement(name = "EndOfDayResponse")
40 public class EndOfDayResponse {
41 
42  @XmlElement(name = "Shipments")
43  protected List<Shipment> shipments;
44 
67  public List<Shipment> getShipments() {
68  if (shipments == null) {
69  shipments = new ArrayList<Shipment>();
70  }
71  return this.shipments;
72  }
73 
74 }