GLS ShipIT  2.8.11
GLS ShipIT - REST services
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 
32 @XmlAccessorType(XmlAccessType.FIELD)
33 @XmlType(name = "DepositService", propOrder = {
34  "serviceName",
35  "placeOfDeposit"
36 })
37 public class DepositService {
38 
39  @XmlElement(name = "ServiceName", required = true)
40  protected String serviceName;
41  @XmlElement(name = "PlaceOfDeposit", required = true)
42  protected String placeOfDeposit;
43 
52  public String getServiceName() {
53  return serviceName;
54  }
55 
64  public void setServiceName(String value) {
65  this.serviceName = value;
66  }
67 
76  public String getPlaceOfDeposit() {
77  return placeOfDeposit;
78  }
79 
88  public void setPlaceOfDeposit(String value) {
89  this.placeOfDeposit = value;
90  }
91 
92 }