GLS ShipIT 4.0.f2
GLS ShipIT - REST services
Loading...
Searching...
No Matches
glsgroup/fpcs/datatypes/soap/v2/shipmentprocessing/Service.java
Go to the documentation of this file.
1
2package eu.glsgroup.fpcs.datatypes.soap.v2.shipmentprocessing;
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;
8import eu.gls_group.fpcs.v1.common.ShopReturnService;
9
10
35@XmlAccessorType(XmlAccessType.FIELD)
36@XmlType(name = "Service", propOrder = {
37 "shopReturn"
38})
39public class Service {
40
41 @XmlElement(name = "ShopReturn")
42 protected ShopReturnService shopReturn;
43
52 public ShopReturnService getShopReturn() {
53 return shopReturn;
54 }
55
64 public void setShopReturn(ShopReturnService value) {
65 this.shopReturn = value;
66 }
67
68}