GLS ShipIT  2.8.11
GLS ShipIT - SOAP services
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 
28 @XmlAccessorType(XmlAccessType.FIELD)
29 @XmlType(name = "", propOrder = {
30  "parcelShopID"
31 })
32 @XmlRootElement(name = "InvalidParcelShopIDFault")
34 
35  @XmlElement(name = "ParcelShopID", required = true)
36  protected String parcelShopID;
37 
46  public String getParcelShopID() {
47  return parcelShopID;
48  }
49 
58  public void setParcelShopID(String value) {
59  this.parcelShopID = value;
60  }
61 
62 }