GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
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 
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 }