GLS ShipIT 4.0.f2
GLS ShipIT - REST services
Loading...
Searching...
No Matches
CreateReturnResponse.java
Go to the documentation of this file.
1
2package eu.glsgroup.fpcs.datatypes.soap.v2.shipmentprocessing;
3
4import java.util.ArrayList;
5import java.util.List;
6import javax.xml.bind.annotation.XmlAccessType;
7import javax.xml.bind.annotation.XmlAccessorType;
8import javax.xml.bind.annotation.XmlElement;
9import javax.xml.bind.annotation.XmlRootElement;
10import javax.xml.bind.annotation.XmlType;
11
12
38@XmlAccessorType(XmlAccessType.FIELD)
39@XmlType(name = "", propOrder = {
40 "parcelData",
41 "printData"
42})
43@XmlRootElement(name = "CreateReturnResponse")
45
46 @XmlElement(name = "ParcelData")
47 protected List<ParcelData> parcelData;
48 @XmlElement(name = "PrintData")
49 protected List<PrintData> printData;
50
73 public List<ParcelData> getParcelData() {
74 if (parcelData == null) {
75 parcelData = new ArrayList<ParcelData>();
76 }
77 return this.parcelData;
78 }
79
102 public List<PrintData> getPrintData() {
103 if (printData == null) {
104 printData = new ArrayList<PrintData>();
105 }
106 return this.printData;
107 }
108
109}