GLS ShipIT  2.8.11
GLS ShipIT - REST services
ShopReturnService.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 = "ShopReturnService", propOrder = {
34  "serviceName",
35  "numberOfLabels"
36 })
37 public class ShopReturnService {
38 
39  @XmlElement(name = "ServiceName", required = true)
40  protected String serviceName;
41  @XmlElement(name = "NumberOfLabels")
42  protected long numberOfLabels;
43 
52  public String getServiceName() {
53  return serviceName;
54  }
55 
64  public void setServiceName(String value) {
65  this.serviceName = value;
66  }
67 
72  public long getNumberOfLabels() {
73  return numberOfLabels;
74  }
75 
80  public void setNumberOfLabels(long value) {
81  this.numberOfLabels = value;
82  }
83 
84 }