GLS ShipIT 4.0.f2
GLS ShipIT - REST services
Loading...
Searching...
No Matches
glsgroup/fpcs/datatypes/soap/v1/shipmentprocessing/MondialRelayArea.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.XmlType;
8
9
31@XmlAccessorType(XmlAccessType.FIELD)
32@XmlType(name = "MondialRelayArea", propOrder = {
33 "mondialRelayNumber"
34})
35public class MondialRelayArea {
36
37 @XmlElement(name = "MondialRelayNumber", required = true)
38 protected String mondialRelayNumber;
39
48 public String getMondialRelayNumber() {
49 return mondialRelayNumber;
50 }
51
60 public void setMondialRelayNumber(String value) {
61 this.mondialRelayNumber = value;
62 }
63
64}