GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
gls_group/fpcs/v1/shipmentprocessing/types/ServiceArea.java
Go to the documentation of this file.
1
2package eu.gls_group.fpcs.v1.shipmentprocessing.types;
3
4import java.util.ArrayList;
5import java.util.List;
6import javax.xml.bind.annotation.XmlAccessType;
7import javax.xml.bind.annotation.XmlAccessorType;
8import javax.xml.bind.annotation.XmlElement;
9import javax.xml.bind.annotation.XmlType;
10
11
35@XmlAccessorType(XmlAccessType.FIELD)
36@XmlType(name = "ServiceArea", propOrder = {
37 "service"
38})
39public class ServiceArea {
40
41 @XmlElement(name = "Service", required = true)
42 protected List<ServiceInfo> service;
43
66 public List<ServiceInfo> getService() {
67 if (service == null) {
68 service = new ArrayList<ServiceInfo>();
69 }
70 return this.service;
71 }
72
73}