GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
ShopDeliveryService.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.common;
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 
34 @XmlAccessorType(XmlAccessType.FIELD)
35 @XmlType(name = "ShopDeliveryService", propOrder = {
36  "serviceName",
37  "parcelShopID"
38 })
39 public class ShopDeliveryService {
40 
41  @XmlElement(name = "ServiceName", required = true)
42  protected String serviceName;
43  @XmlElement(name = "ParcelShopID", required = true)
44  protected String parcelShopID;
45 
54  public String getServiceName() {
55  return serviceName;
56  }
57 
66  public void setServiceName(String value) {
67  this.serviceName = value;
68  }
69 
78  public String getParcelShopID() {
79  return parcelShopID;
80  }
81 
90  public void setParcelShopID(String value) {
91  this.parcelShopID = value;
92  }
93 
94 }