GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
LimitedQuantitiesService.java
Go to the documentation of this file.
1
2package eu.gls_group.fpcs.v1.common;
3
4import java.math.BigDecimal;
5import javax.xml.bind.annotation.XmlAccessType;
6import javax.xml.bind.annotation.XmlAccessorType;
7import javax.xml.bind.annotation.XmlElement;
8import javax.xml.bind.annotation.XmlSchemaType;
9import javax.xml.bind.annotation.XmlType;
10import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
11import org.w3._2001.xmlschema.Adapter1;
12
13
38@XmlAccessorType(XmlAccessType.FIELD)
39@XmlType(name = "LimitedQuantitiesService", propOrder = {
40 "serviceName",
41 "weight"
42})
44
45 @XmlElement(name = "ServiceName", required = true)
46 protected String serviceName;
47 @XmlElement(name = "Weight", type = String.class)
48 @XmlJavaTypeAdapter(Adapter1 .class)
49 @XmlSchemaType(name = "decimal")
50 protected BigDecimal weight;
51
60 public String getServiceName() {
61 return serviceName;
62 }
63
72 public void setServiceName(String value) {
73 this.serviceName = value;
74 }
75
84 public BigDecimal getWeight() {
85 return weight;
86 }
87
96 public void setWeight(BigDecimal value) {
97 this.weight = value;
98 }
99
100}