GLS ShipIT  4.0.f7
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 
38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "CustomContent", propOrder = {
40  "customerLogo",
41  "barcode",
42  "barcodeContentType",
43  "barcodeType",
44  "hideShipperAddress"
45 })
46 public class CustomContent {
47 
48  @XmlElement(name = "CustomerLogo")
49  protected byte[] customerLogo;
50  @XmlElement(name = "Barcode")
51  protected String barcode;
52  @XmlElement(name = "BarcodeContentType", type = String.class)
53  @XmlJavaTypeAdapter(Adapter2 .class)
54  protected BarcodeContentType barcodeContentType;
55  @XmlElement(name = "BarcodeType", type = String.class)
56  @XmlJavaTypeAdapter(Adapter1 .class)
57  protected BarcodeType barcodeType;
58  @XmlElement(name = "HideShipperAddress")
59  protected Boolean hideShipperAddress;
60 
68  public byte[] getCustomerLogo() {
69  return customerLogo;
70  }
71 
79  public void setCustomerLogo(byte[] value) {
80  this.customerLogo = value;
81  }
82 
91  public String getBarcode() {
92  return barcode;
93  }
94 
103  public void setBarcode(String value) {
104  this.barcode = value;
105  }
106 
115  public BarcodeContentType getBarcodeContentType() {
116  return barcodeContentType;
117  }
118 
127  public void setBarcodeContentType(BarcodeContentType value) {
128  this.barcodeContentType = value;
129  }
130 
139  public BarcodeType getBarcodeType() {
140  return barcodeType;
141  }
142 
151  public void setBarcodeType(BarcodeType value) {
152  this.barcodeType = value;
153  }
154 
163  public Boolean isHideShipperAddress() {
164  return hideShipperAddress;
165  }
166 
175  public void setHideShipperAddress(Boolean value) {
176  this.hideShipperAddress = value;
177  }
178 
179 }