GLS ShipIT  2.8.11
GLS ShipIT - REST services
MetaData.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.shipmentprocessing;
3 
5 
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 import java.util.ArrayList;
11 import java.util.List;
12 
13 
34 @XmlAccessorType(XmlAccessType.FIELD)
35 @XmlType(name = "MetaData", propOrder = {
36  "item"
37 })
38 public class MetaData {
39 
40  @XmlElement(name = "Item")
41  protected List<KeyValuePair> item;
42 
65  public List<KeyValuePair> getItem() {
66  if (item == null) {
67  item = new ArrayList<KeyValuePair>();
68  }
69  return this.item;
70  }
71 
72 }