GLS ShipIT 4.0.f2
GLS ShipIT - REST services
Loading...
Searching...
No Matches
glsgroup/fpcs/datatypes/soap/v1/shipmentprocessing/InvalidShipmentUnitFault.java
Go to the documentation of this file.
1
2package eu.glsgroup.fpcs.datatypes.soap.v1.shipmentprocessing;
3
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlElement;
7import javax.xml.bind.annotation.XmlRootElement;
8import javax.xml.bind.annotation.XmlType;
9
10
30@XmlAccessorType(XmlAccessType.FIELD)
31@XmlType(name = "", propOrder = {
32 "shipmentUnit"
33})
34@XmlRootElement(name = "InvalidShipmentUnitFault")
36
37 @XmlElement(required = true)
38 protected ShipmentUnit shipmentUnit;
39
48 public ShipmentUnit getShipmentUnit() {
49 return shipmentUnit;
50 }
51
60 public void setShipmentUnit(ShipmentUnit value) {
61 this.shipmentUnit = value;
62 }
63
64}