GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
ServiceInfo.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.shipmentprocessing;
3 
4 import java.util.ArrayList;
5 import java.util.List;
6 import javax.xml.bind.annotation.XmlAccessType;
7 import javax.xml.bind.annotation.XmlAccessorType;
8 import javax.xml.bind.annotation.XmlElement;
9 import javax.xml.bind.annotation.XmlType;
10 
11 
36 @XmlAccessorType(XmlAccessType.FIELD)
37 @XmlType(name = "ServiceInfo", propOrder = {
38  "header",
39  "information"
40 })
41 public class ServiceInfo {
42 
43  @XmlElement(name = "Header", required = true)
44  protected String header;
45  @XmlElement(name = "Information")
46  protected List<Information> information;
47 
56  public String getHeader() {
57  return header;
58  }
59 
68  public void setHeader(String value) {
69  this.header = value;
70  }
71 
94  public List<Information> getInformation() {
95  if (information == null) {
96  information = new ArrayList<Information>();
97  }
98  return this.information;
99  }
100 
101 }