GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
ShopDeliveryService.java
Go to the documentation of this file.
1
2package eu.gls_group.fpcs.v1.common;
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
34@XmlAccessorType(XmlAccessType.FIELD)
35@XmlType(name = "ShopDeliveryService", propOrder = {
36 "serviceName",
37 "parcelShopID"
38})
39public 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}