GLS ShipIT  4.0.f3
GLS ShipIT - REST services
glsgroup/fpcs/datatypes/soap/v2/shipmentprocessing/UpdateParcelWeightRequestParameter.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v2.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 
47 @XmlAccessorType(XmlAccessType.FIELD)
48 @XmlType(name = "", propOrder = {
49  "trackID",
50  "shipmentReference",
51  "shipmentUnitReference",
52  "parcelNumber",
53  "partnerParcelNumber",
54  "nationalParcelNumber",
55  "weight"
56 })
57 @XmlRootElement(name = "UpdateParcelWeightRequestParameter")
59 
60  @XmlElement(name = "TrackID")
61  protected String trackID;
62  @XmlElement(name = "ShipmentReference")
63  protected String shipmentReference;
64  @XmlElement(name = "ShipmentUnitReference")
65  protected String shipmentUnitReference;
66  @XmlElement(name = "ParcelNumber")
67  protected String parcelNumber;
68  @XmlElement(name = "PartnerParcelNumber")
69  protected String partnerParcelNumber;
70  @XmlElement(name = "NationalParcelNumber")
71  protected String nationalParcelNumber;
72  @XmlElement(name = "Weight", required = true, type = String.class)
73  @XmlJavaTypeAdapter(Adapter1 .class)
74  @XmlSchemaType(name = "decimal")
75  protected BigDecimal weight;
76 
85  public String getTrackID() {
86  return trackID;
87  }
88 
97  public void setTrackID(String value) {
98  this.trackID = value;
99  }
100 
109  public String getShipmentReference() {
110  return shipmentReference;
111  }
112 
121  public void setShipmentReference(String value) {
122  this.shipmentReference = value;
123  }
124 
133  public String getShipmentUnitReference() {
134  return shipmentUnitReference;
135  }
136 
145  public void setShipmentUnitReference(String value) {
146  this.shipmentUnitReference = value;
147  }
148 
157  public String getParcelNumber() {
158  return parcelNumber;
159  }
160 
169  public void setParcelNumber(String value) {
170  this.parcelNumber = value;
171  }
172 
181  public String getPartnerParcelNumber() {
182  return partnerParcelNumber;
183  }
184 
193  public void setPartnerParcelNumber(String value) {
194  this.partnerParcelNumber = value;
195  }
196 
205  public String getNationalParcelNumber() {
206  return nationalParcelNumber;
207  }
208 
217  public void setNationalParcelNumber(String value) {
218  this.nationalParcelNumber = value;
219  }
220 
229  public BigDecimal getWeight() {
230  return weight;
231  }
232 
241  public void setWeight(BigDecimal value) {
242  this.weight = value;
243  }
244 
245 }