GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
gls_group/fpcs/v1/shipmentprocessing/types/MetaData.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;
10import eu.gls_group.fpcs.v1.common.KeyValuePair;
11
12
35@XmlAccessorType(XmlAccessType.FIELD)
36@XmlType(name = "MetaData", propOrder = {
37 "item"
38})
39public class MetaData {
40
41 @XmlElement(name = "Item")
42 protected List<KeyValuePair> item;
43
66 public List<KeyValuePair> getItem() {
67 if (item == null) {
68 item = new ArrayList<KeyValuePair>();
69 }
70 return this.item;
71 }
72
73}