GLS ShipIT  2.8.11
GLS ShipIT - SOAP services
CancelParcelResponse.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.shipmentprocessing;
3 
4 import javax.xml.bind.annotation.XmlAccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlElement;
7 import javax.xml.bind.annotation.XmlRootElement;
8 import javax.xml.bind.annotation.XmlType;
9 
10 
34 @XmlAccessorType(XmlAccessType.FIELD)
35 @XmlType(name = "", propOrder = {
36  "trackID",
37  "result"
38 })
39 @XmlRootElement(name = "CancelParcelResponse")
40 public class CancelParcelResponse {
41 
42  @XmlElement(name = "TrackID", required = true)
43  protected String trackID;
44  @XmlElement(required = true)
45  protected String result;
46 
55  public String getTrackID() {
56  return trackID;
57  }
58 
67  public void setTrackID(String value) {
68  this.trackID = value;
69  }
70 
79  public String getResult() {
80  return result;
81  }
82 
91  public void setResult(String value) {
92  this.result = value;
93  }
94 
95 }