GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
glsgroup/fpcs/datatypes/soap/v2/shipmentprocessing/UpdateParcelWeightResponse.java
Go to the documentation of this file.
1
2package eu.glsgroup.fpcs.datatypes.soap.v2.shipmentprocessing;
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.XmlRootElement;
9import javax.xml.bind.annotation.XmlSchemaType;
10import javax.xml.bind.annotation.XmlType;
11import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
12import org.w3._2001.xmlschema.Adapter1;
13
14
39@XmlAccessorType(XmlAccessType.FIELD)
40@XmlType(name = "", propOrder = {
41 "updatedWeight"
42})
43@XmlRootElement(name = "UpdateParcelWeightResponse")
45
46 @XmlElement(name = "UpdatedWeight", required = true, type = String.class)
47 @XmlJavaTypeAdapter(Adapter1 .class)
48 @XmlSchemaType(name = "decimal")
49 protected BigDecimal updatedWeight;
50
59 public BigDecimal getUpdatedWeight() {
60 return updatedWeight;
61 }
62
71 public void setUpdatedWeight(BigDecimal value) {
72 this.updatedWeight = value;
73 }
74
75}