GLS ShipIT  3.5.15
GLS ShipIT - REST services
glsgroup/fpcs/datatypes/soap/v2/shipmentprocessing/Service.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v2.shipmentprocessing;
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;
9 
10 
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name = "Service", propOrder = {
37  "shopReturn"
38 })
39 public 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 }