GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
MondialRelayArea.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.XmlType;
8 
9 
31 @XmlAccessorType(XmlAccessType.FIELD)
32 @XmlType(name = "MondialRelayArea", propOrder = {
33  "mondialRelayNumber"
34 })
35 public 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 }