GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
HazardousGoodsService.java
Go to the documentation of this file.
1
2package eu.gls_group.fpcs.v1.common;
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
36@XmlAccessorType(XmlAccessType.FIELD)
37@XmlType(name = "HazardousGoodsService", propOrder = {
38 "serviceName",
39 "hazardousGood"
40})
42
43 @XmlElement(name = "ServiceName", required = true)
44 protected String serviceName;
45 @XmlElement(name = "HazardousGood", required = true)
46 protected List<HazardousGood> hazardousGood;
47
56 public String getServiceName() {
57 return serviceName;
58 }
59
68 public void setServiceName(String value) {
69 this.serviceName = value;
70 }
71
94 public List<HazardousGood> getHazardousGood() {
95 if (hazardousGood == null) {
96 hazardousGood = new ArrayList<HazardousGood>();
97 }
98 return this.hazardousGood;
99 }
100
101}