GLS ShipIT  3.3.20
GLS ShipIT - SOAP services
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.XmlSchemaType;
10 import javax.xml.bind.annotation.XmlType;
11 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
13 
14 
40 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name = "", propOrder = {
42  "trackID",
43  "weight"
44 })
45 @XmlRootElement(name = "UpdateParcelWeightRequestParameter")
47 
48  @XmlElement(name = "TrackID", required = true)
49  protected String trackID;
50  @XmlElement(name = "Weight", required = true, type = String.class)
51  @XmlJavaTypeAdapter(Adapter1 .class)
52  @XmlSchemaType(name = "decimal")
53  protected BigDecimal weight;
54 
63  public String getTrackID() {
64  return trackID;
65  }
66 
75  public void setTrackID(String value) {
76  this.trackID = value;
77  }
78 
87  public BigDecimal getWeight() {
88  return weight;
89  }
90 
99  public void setWeight(BigDecimal value) {
100  this.weight = value;
101  }
102 
103 }