GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
AllowedServicesResponse.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.shipmentprocessing;
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 
37 @XmlAccessorType(XmlAccessType.FIELD)
38 @XmlType(name = "", propOrder = {
39  "allowedServices"
40 })
41 @XmlRootElement(name = "AllowedServicesResponse")
43 
44  @XmlElement(name = "AllowedServices")
45  protected List<AllowedService> allowedServices;
46 
69  public List<AllowedService> getAllowedServices() {
70  if (allowedServices == null) {
71  allowedServices = new ArrayList<AllowedService>();
72  }
73  return this.allowedServices;
74  }
75 
76 }