GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
ListOfParcelShop.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop;
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.XmlRootElement;
10 import javax.xml.bind.annotation.XmlType;
11 
12 
34 @XmlAccessorType(XmlAccessType.FIELD)
35 @XmlType(name = "", propOrder = {
36  "parcelShop"
37 })
38 @XmlRootElement(name = "ListOfParcelShop")
39 public class ListOfParcelShop {
40 
41  @XmlElement(name = "ParcelShop")
42  protected List<ParcelShop> parcelShop;
43 
66  public List<ParcelShop> getParcelShop() {
67  if (parcelShop == null) {
68  parcelShop = new ArrayList<ParcelShop>();
69  }
70  return this.parcelShop;
71  }
72 
73 }