GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
glsgroup/fpcs/datatypes/soap/v1/shipmentprocessing/ItalianData.java
Go to the documentation of this file.
1
2package eu.glsgroup.fpcs.datatypes.soap.v1.shipmentprocessing;
3
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlElement;
7import javax.xml.bind.annotation.XmlType;
8
9
34@XmlAccessorType(XmlAccessType.FIELD)
35@XmlType(name = "ItalianData", propOrder = {
36 "barcode",
37 "datamatrix",
38 "depot",
39 "tour"
40})
41public class ItalianData {
42
43 @XmlElement(name = "Barcode")
44 protected String barcode;
45 @XmlElement(name = "Datamatrix")
46 protected String datamatrix;
47 @XmlElement(name = "Depot")
48 protected String depot;
49 @XmlElement(name = "Tour")
50 protected String tour;
51
60 public String getBarcode() {
61 return barcode;
62 }
63
72 public void setBarcode(String value) {
73 this.barcode = value;
74 }
75
84 public String getDatamatrix() {
85 return datamatrix;
86 }
87
96 public void setDatamatrix(String value) {
97 this.datamatrix = value;
98 }
99
108 public String getDepot() {
109 return depot;
110 }
111
120 public void setDepot(String value) {
121 this.depot = value;
122 }
123
132 public String getTour() {
133 return tour;
134 }
135
144 public void setTour(String value) {
145 this.tour = value;
146 }
147
148}