GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
InvalidParcelShopIDFault.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop;
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 
30 @XmlAccessorType(XmlAccessType.FIELD)
31 @XmlType(name = "", propOrder = {
32  "parcelShopID"
33 })
34 @XmlRootElement(name = "InvalidParcelShopIDFault")
36 
37  @XmlElement(name = "ParcelShopID", required = true)
38  protected String parcelShopID;
39 
48  public String getParcelShopID() {
49  return parcelShopID;
50  }
51 
60  public void setParcelShopID(String value) {
61  this.parcelShopID = value;
62  }
63 
64 }