GLS ShipIT 4.0.f2
GLS ShipIT - REST services
Loading...
Searching...
No Matches
gls_group/fpcs/v1/shipmentprocessing/types/ServiceInfo.java
Go to the documentation of this file.
1
2package eu.gls_group.fpcs.v1.shipmentprocessing.types;
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.XmlType;
10
11
36@XmlAccessorType(XmlAccessType.FIELD)
37@XmlType(name = "ServiceInfo", propOrder = {
38 "header",
39 "information"
40})
41public 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}