GLS ShipIT  2.8.11
GLS ShipIT - REST services
CouldNotTransmitShipmentsFault.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 
30 @XmlAccessorType(XmlAccessType.FIELD)
31 @XmlType(name = "", propOrder = {
32  "shipmentUnitId"
33 })
34 @XmlRootElement(name = "CouldNotTransmitShipmentsFault")
36 
37  @XmlElement(required = true)
38  protected List<String> shipmentUnitId;
39 
62  public List<String> getShipmentUnitId() {
63  if (shipmentUnitId == null) {
64  shipmentUnitId = new ArrayList<String>();
65  }
66  return this.shipmentUnitId;
67  }
68 
69 }