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