GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
LimitedQuantitiesService.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.common;
3 
4 import java.math.BigDecimal;
5 import javax.xml.bind.annotation.XmlAccessType;
6 import javax.xml.bind.annotation.XmlAccessorType;
7 import javax.xml.bind.annotation.XmlElement;
8 import javax.xml.bind.annotation.XmlType;
9 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
10 import org.w3._2001.xmlschema.Adapter3;
11 
12 
37 @XmlAccessorType(XmlAccessType.FIELD)
38 @XmlType(name = "LimitedQuantitiesService", propOrder = {
39  "serviceName",
40  "weight"
41 })
43 
44  @XmlElement(name = "ServiceName", required = true)
45  protected String serviceName;
46  @XmlElement(name = "Weight", type = String.class)
47  @XmlJavaTypeAdapter(Adapter3 .class)
48  protected BigDecimal weight;
49 
58  public String getServiceName() {
59  return serviceName;
60  }
61 
70  public void setServiceName(String value) {
71  this.serviceName = value;
72  }
73 
82  public BigDecimal getWeight() {
83  return weight;
84  }
85 
94  public void setWeight(BigDecimal value) {
95  this.weight = value;
96  }
97 
98 }