GLS ShipIT  2.8.11
GLS ShipIT - REST services
ReturnOptions.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.XmlType;
8 
9 
32 @XmlAccessorType(XmlAccessType.FIELD)
33 @XmlType(name = "ReturnOptions", propOrder = {
34  "returnPrintData",
35  "returnRoutingInfo"
36 })
37 public class ReturnOptions {
38 
39  @XmlElement(name = "ReturnPrintData", defaultValue = "true")
40  protected Boolean returnPrintData;
41  @XmlElement(name = "ReturnRoutingInfo", defaultValue = "true")
42  protected Boolean returnRoutingInfo;
43 
52  public Boolean isReturnPrintData() {
53  return returnPrintData;
54  }
55 
64  public void setReturnPrintData(Boolean value) {
65  this.returnPrintData = value;
66  }
67 
76  public Boolean isReturnRoutingInfo() {
77  return returnRoutingInfo;
78  }
79 
88  public void setReturnRoutingInfo(Boolean value) {
89  this.returnRoutingInfo = value;
90  }
91 
92 }