GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
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 
34 @XmlAccessorType(XmlAccessType.FIELD)
35 @XmlType(name = "ShopReturnService", propOrder = {
36  "serviceName",
37  "numberOfLabels"
38 })
39 public class ShopReturnService {
40 
41  @XmlElement(name = "ServiceName", required = true)
42  protected String serviceName;
43  @XmlElement(name = "NumberOfLabels")
44  protected long numberOfLabels;
45 
54  public String getServiceName() {
55  return serviceName;
56  }
57 
66  public void setServiceName(String value) {
67  this.serviceName = value;
68  }
69 
74  public long getNumberOfLabels() {
75  return numberOfLabels;
76  }
77 
82  public void setNumberOfLabels(long value) {
83  this.numberOfLabels = value;
84  }
85 
86 }