GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
UpdateParcelWeightResponse.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.shipmentprocessing;
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.XmlRootElement;
9 import javax.xml.bind.annotation.XmlType;
10 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
11 import org.w3._2001.xmlschema.Adapter3;
12 
13 
38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "", propOrder = {
40  "updatedWeight"
41 })
42 @XmlRootElement(name = "UpdateParcelWeightResponse")
44 
45  @XmlElement(name = "UpdatedWeight", required = true, type = String.class)
46  @XmlJavaTypeAdapter(Adapter3 .class)
47  protected BigDecimal updatedWeight;
48 
57  public BigDecimal getUpdatedWeight() {
58  return updatedWeight;
59  }
60 
69  public void setUpdatedWeight(BigDecimal value) {
70  this.updatedWeight = value;
71  }
72 
73 }