GLS ShipIT  3.5.15
GLS ShipIT - SOAP services
glsgroup/fpcs/datatypes/soap/v1/shipmentprocessing/CustomContent.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 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
9 import eu.glsgroup.fpcs.dto.config.BarcodeContentType;
10 import eu.glsgroup.fpcs.dto.config.BarcodeType;
11 
12 
41 @XmlAccessorType(XmlAccessType.FIELD)
42 @XmlType(name = "CustomContent", propOrder = {
43  "customerLogo",
44  "barcodeContentType",
45  "barcode",
46  "barcodeType",
47  "hideShipperAddress"
48 })
49 public class CustomContent {
50 
51  @XmlElement(name = "CustomerLogo")
52  protected byte[] customerLogo;
53  @XmlElement(name = "BarcodeContentType", type = String.class)
54  @XmlJavaTypeAdapter(Adapter2 .class)
55  protected BarcodeContentType barcodeContentType;
56  @XmlElement(name = "Barcode")
57  protected String barcode;
58  @XmlElement(name = "BarcodeType", type = String.class)
59  @XmlJavaTypeAdapter(Adapter1 .class)
60  protected BarcodeType barcodeType;
61  @XmlElement(name = "HideShipperAddress")
62  protected Boolean hideShipperAddress;
63 
71  public byte[] getCustomerLogo() {
72  return customerLogo;
73  }
74 
82  public void setCustomerLogo(byte[] value) {
83  this.customerLogo = value;
84  }
85 
94  public BarcodeContentType getBarcodeContentType() {
95  return barcodeContentType;
96  }
97 
106  public void setBarcodeContentType(BarcodeContentType value) {
107  this.barcodeContentType = value;
108  }
109 
118  public String getBarcode() {
119  return barcode;
120  }
121 
130  public void setBarcode(String value) {
131  this.barcode = value;
132  }
133 
142  public BarcodeType getBarcodeType() {
143  return barcodeType;
144  }
145 
154  public void setBarcodeType(BarcodeType value) {
155  this.barcodeType = value;
156  }
157 
166  public Boolean isHideShipperAddress() {
167  return hideShipperAddress;
168  }
169 
178  public void setHideShipperAddress(Boolean value) {
179  this.hideShipperAddress = value;
180  }
181 
182 }