GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
UpdateParcelWeightRequestParameter.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 
39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name = "", propOrder = {
41  "trackID",
42  "weight"
43 })
44 @XmlRootElement(name = "UpdateParcelWeightRequestParameter")
46 
47  @XmlElement(name = "TrackID", required = true)
48  protected String trackID;
49  @XmlElement(name = "Weight", required = true, type = String.class)
50  @XmlJavaTypeAdapter(Adapter3 .class)
51  protected BigDecimal weight;
52 
61  public String getTrackID() {
62  return trackID;
63  }
64 
73  public void setTrackID(String value) {
74  this.trackID = value;
75  }
76 
85  public BigDecimal getWeight() {
86  return weight;
87  }
88 
97  public void setWeight(BigDecimal value) {
98  this.weight = value;
99  }
100 
101 }