GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
ShipmentService.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 
44 @XmlAccessorType(XmlAccessType.FIELD)
45 @XmlType(name = "ShipmentService", propOrder = {
46  "service",
47  "shopDelivery",
48  "shopReturn",
49  "intercompany",
50  "exchange",
51  "deliveryAtWork",
52  "deposit",
53  "identPin",
54  "ident",
55  "pickAndShip",
56  "pickAndReturn"
57 })
58 public class ShipmentService {
59 
60  @XmlElement(name = "Service")
61  protected Service service;
62  @XmlElement(name = "ShopDelivery")
63  protected ShopDeliveryService shopDelivery;
64  @XmlElement(name = "ShopReturn")
65  protected ShopReturnService shopReturn;
66  @XmlElement(name = "Intercompany")
67  protected IntercompanyService intercompany;
68  @XmlElement(name = "Exchange")
69  protected ExchangeService exchange;
70  @XmlElement(name = "DeliveryAtWork")
71  protected DeliveryAtWorkService deliveryAtWork;
72  @XmlElement(name = "Deposit")
73  protected DepositService deposit;
74  @XmlElement(name = "IdentPin")
75  protected IdentPINService identPin;
76  @XmlElement(name = "Ident")
77  protected IdentService ident;
78  @XmlElement(name = "PickAndShip")
79  protected PickAndShipService pickAndShip;
80  @XmlElement(name = "PickAndReturn")
81  protected PickAndReturnService pickAndReturn;
82 
91  public Service getService() {
92  return service;
93  }
94 
103  public void setService(Service value) {
104  this.service = value;
105  }
106 
116  return shopDelivery;
117  }
118 
128  this.shopDelivery = value;
129  }
130 
140  return shopReturn;
141  }
142 
151  public void setShopReturn(ShopReturnService value) {
152  this.shopReturn = value;
153  }
154 
164  return intercompany;
165  }
166 
176  this.intercompany = value;
177  }
178 
188  return exchange;
189  }
190 
199  public void setExchange(ExchangeService value) {
200  this.exchange = value;
201  }
202 
212  return deliveryAtWork;
213  }
214 
224  this.deliveryAtWork = value;
225  }
226 
236  return deposit;
237  }
238 
247  public void setDeposit(DepositService value) {
248  this.deposit = value;
249  }
250 
260  return identPin;
261  }
262 
271  public void setIdentPin(IdentPINService value) {
272  this.identPin = value;
273  }
274 
284  return ident;
285  }
286 
295  public void setIdent(IdentService value) {
296  this.ident = value;
297  }
298 
308  return pickAndShip;
309  }
310 
319  public void setPickAndShip(PickAndShipService value) {
320  this.pickAndShip = value;
321  }
322 
332  return pickAndReturn;
333  }
334 
344  this.pickAndReturn = value;
345  }
346 
347 }