GLS ShipIT  2.8.11
GLS ShipIT - SOAP services
ValidateShipmentRequestData.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 
10 
32 @XmlAccessorType(XmlAccessType.FIELD)
33 @XmlType(name = "", propOrder = {
34  "shipment"
35 })
36 @XmlRootElement(name = "ValidateShipmentRequestData")
38 
39  @XmlElement(name = "Shipment", required = true)
40  protected Shipment shipment;
41 
50  public Shipment getShipment() {
51  return shipment;
52  }
53 
62  public void setShipment(Shipment value) {
63  this.shipment = value;
64  }
65 
66 }