GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
gls_group/fpcs/v1/shipmentprocessing/types/CouldNotTransmitShipmentsFault.java
Go to the documentation of this file.
1
2package eu.gls_group.fpcs.v1.shipmentprocessing.types;
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
32@XmlAccessorType(XmlAccessType.FIELD)
33@XmlType(name = "", propOrder = {
34 "shipmentUnitId"
35})
36@XmlRootElement(name = "CouldNotTransmitShipmentsFault")
38
39 @XmlElement(required = true)
40 protected List<String> shipmentUnitId;
41
64 public List<String> getShipmentUnitId() {
65 if (shipmentUnitId == null) {
66 shipmentUnitId = new ArrayList<String>();
67 }
68 return this.shipmentUnitId;
69 }
70
71}