GLS ShipIT  2.8.11
GLS ShipIT - SOAP services
AllowedServicesResponse.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.shipmentprocessing;
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 
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name = "", propOrder = {
37  "allowedServices"
38 })
39 @XmlRootElement(name = "AllowedServicesResponse")
41 
42  @XmlElement(name = "AllowedServices")
43  protected List<AllowedService> allowedServices;
44 
67  public List<AllowedService> getAllowedServices() {
68  if (allowedServices == null) {
69  allowedServices = new ArrayList<AllowedService>();
70  }
71  return this.allowedServices;
72  }
73 
74 }