GLS ShipIT  2.8.11
GLS ShipIT - SOAP services
ListOfParcelShop.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop;
3 
4 import javax.xml.bind.annotation.XmlAccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlElement;
7 import javax.xml.bind.annotation.XmlRootElement;
8 import javax.xml.bind.annotation.XmlType;
9 import java.util.ArrayList;
10 import java.util.List;
11 
12 
32 @XmlAccessorType(XmlAccessType.FIELD)
33 @XmlType(name = "", propOrder = {
34  "parcelShop"
35 })
36 @XmlRootElement(name = "ListOfParcelShop")
37 public class ListOfParcelShop {
38 
39  @XmlElement(name = "ParcelShop")
40  protected List<ParcelShop> parcelShop;
41 
64  public List<ParcelShop> getParcelShop() {
65  if (parcelShop == null) {
66  parcelShop = new ArrayList<ParcelShop>();
67  }
68  return this.parcelShop;
69  }
70 
71 }