GLS ShipIT  2.8.11
GLS ShipIT - REST services
LimitedQuantitiesService.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.common;
3 
5 
6 import javax.xml.bind.annotation.XmlAccessType;
7 import javax.xml.bind.annotation.XmlAccessorType;
8 import javax.xml.bind.annotation.XmlElement;
9 import javax.xml.bind.annotation.XmlType;
10 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
11 import java.math.BigDecimal;
12 
13 
36 @XmlAccessorType(XmlAccessType.FIELD)
37 @XmlType(name = "LimitedQuantitiesService", propOrder = {
38  "serviceName",
39  "weight"
40 })
42 
43  @XmlElement(name = "ServiceName", required = true)
44  protected String serviceName;
45  @XmlElement(name = "Weight", type = String.class)
46  @XmlJavaTypeAdapter(Adapter3.class)
47  protected BigDecimal weight;
48 
57  public String getServiceName() {
58  return serviceName;
59  }
60 
69  public void setServiceName(String value) {
70  this.serviceName = value;
71  }
72 
81  public BigDecimal getWeight() {
82  return weight;
83  }
84 
93  public void setWeight(BigDecimal value) {
94  this.weight = value;
95  }
96 
97 }