GLS ShipIT 4.0.f2
GLS ShipIT - REST services
Loading...
Searching...
No Matches
glsgroup/fpcs/datatypes/soap/v1/shipmentprocessing/ValidateShipmentRequestData.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
35@XmlAccessorType(XmlAccessType.FIELD)
36@XmlType(name = "", propOrder = {
37 "shipment"
38})
39@XmlRootElement(name = "ValidateShipmentRequestData")
41
42 @XmlElement(name = "Shipment", required = true)
43 protected Shipment shipment;
44
53 public Shipment getShipment() {
54 return shipment;
55 }
56
65 public void setShipment(Shipment value) {
66 this.shipment = value;
67 }
68
69}