GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
DepositService.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 = "DepositService", propOrder = {
36  "serviceName",
37  "placeOfDeposit"
38 })
39 public class DepositService {
40 
41  @XmlElement(name = "ServiceName", required = true)
42  protected String serviceName;
43  @XmlElement(name = "PlaceOfDeposit", required = true)
44  protected String placeOfDeposit;
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 getPlaceOfDeposit() {
79  return placeOfDeposit;
80  }
81 
90  public void setPlaceOfDeposit(String value) {
91  this.placeOfDeposit = value;
92  }
93 
94 }