GLS ShipIT  4.0.f3
GLS ShipIT - REST services
gls_group/fpcs/v1/shipmentprocessing/types/ItalianData.java
Go to the documentation of this file.
1 
2 package eu.gls_group.fpcs.v1.shipmentprocessing.types;
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.XmlType;
8 
9 
34 @XmlAccessorType(XmlAccessType.FIELD)
35 @XmlType(name = "ItalianData", propOrder = {
36  "barcode",
37  "datamatrix",
38  "depot",
39  "tour"
40 })
41 public 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 }