GLS ShipIT  3.5.15
GLS ShipIT - SOAP services
glsgroup/fpcs/datatypes/soap/v1/shipmentprocessing/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 
46 @XmlAccessorType(XmlAccessType.FIELD)
47 @XmlType(name = "", propOrder = {
48  "trackID",
49  "shipmentReference",
50  "shipmentUnitReference",
51  "parcelNumber",
52  "partnerParcelNumber",
53  "weight"
54 })
55 @XmlRootElement(name = "UpdateParcelWeightRequestParameter")
57 
58  @XmlElement(name = "TrackID")
59  protected String trackID;
60  @XmlElement(name = "ShipmentReference")
61  protected String shipmentReference;
62  @XmlElement(name = "ShipmentUnitReference")
63  protected String shipmentUnitReference;
64  @XmlElement(name = "ParcelNumber")
65  protected String parcelNumber;
66  @XmlElement(name = "PartnerParcelNumber")
67  protected String partnerParcelNumber;
68  @XmlElement(name = "Weight", required = true, type = String.class)
69  @XmlJavaTypeAdapter(Adapter1 .class)
70  @XmlSchemaType(name = "decimal")
71  protected BigDecimal weight;
72 
81  public String getTrackID() {
82  return trackID;
83  }
84 
93  public void setTrackID(String value) {
94  this.trackID = value;
95  }
96 
105  public String getShipmentReference() {
106  return shipmentReference;
107  }
108 
117  public void setShipmentReference(String value) {
118  this.shipmentReference = value;
119  }
120 
129  public String getShipmentUnitReference() {
130  return shipmentUnitReference;
131  }
132 
141  public void setShipmentUnitReference(String value) {
142  this.shipmentUnitReference = value;
143  }
144 
153  public String getParcelNumber() {
154  return parcelNumber;
155  }
156 
165  public void setParcelNumber(String value) {
166  this.parcelNumber = value;
167  }
168 
177  public String getPartnerParcelNumber() {
178  return partnerParcelNumber;
179  }
180 
189  public void setPartnerParcelNumber(String value) {
190  this.partnerParcelNumber = value;
191  }
192 
201  public BigDecimal getWeight() {
202  return weight;
203  }
204 
213  public void setWeight(BigDecimal value) {
214  this.weight = value;
215  }
216 
217 }