GLS ShipIT  3.5.15
GLS ShipIT - SOAP services
gls_group/fpcs/v1/common/ShopReturnService.java
Go to the documentation of this file.
1 
2 package eu.gls_group.fpcs.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.XmlSchemaType;
8 import javax.xml.bind.annotation.XmlType;
9 
10 
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name = "ShopReturnService", propOrder = {
37  "serviceName",
38  "numberOfLabels"
39 })
40 public class ShopReturnService {
41 
42  @XmlElement(name = "ServiceName", required = true)
43  protected String serviceName;
44  @XmlElement(name = "NumberOfLabels")
45  @XmlSchemaType(name = "unsignedInt")
46  protected long numberOfLabels;
47 
56  public String getServiceName() {
57  return serviceName;
58  }
59 
68  public void setServiceName(String value) {
69  this.serviceName = value;
70  }
71 
76  public long getNumberOfLabels() {
77  return numberOfLabels;
78  }
79 
84  public void setNumberOfLabels(long value) {
85  this.numberOfLabels = value;
86  }
87 
88 }