GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
UnitService.java
Go to the documentation of this file.
1
2package eu.gls_group.fpcs.v1.common;
3
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlElement;
7import javax.xml.bind.annotation.XmlType;
8
9
38@XmlAccessorType(XmlAccessType.FIELD)
39@XmlType(name = "UnitService", propOrder = {
40 "cash",
41 "addonLiability",
42 "hazardousGoods",
43 "exWorks",
44 "limitedQuantities"
45})
46public class UnitService {
47
48 @XmlElement(name = "Cash")
49 protected CashService cash;
50 @XmlElement(name = "AddonLiability")
51 protected AddOnLiabilityService addonLiability;
52 @XmlElement(name = "HazardousGoods")
53 protected HazardousGoodsService hazardousGoods;
54 @XmlElement(name = "ExWorks")
55 protected ExWorksService exWorks;
56 @XmlElement(name = "LimitedQuantities")
57 protected LimitedQuantitiesService limitedQuantities;
58
67 public CashService getCash() {
68 return cash;
69 }
70
79 public void setCash(CashService value) {
80 this.cash = value;
81 }
82
92 return addonLiability;
93 }
94
104 this.addonLiability = value;
105 }
106
116 return hazardousGoods;
117 }
118
128 this.hazardousGoods = value;
129 }
130
140 return exWorks;
141 }
142
151 public void setExWorks(ExWorksService value) {
152 this.exWorks = value;
153 }
154
164 return limitedQuantities;
165 }
166
176 this.limitedQuantities = value;
177 }
178
179}
void setExWorks(ExWorksService value)
void setLimitedQuantities(LimitedQuantitiesService value)
HazardousGoodsService getHazardousGoods()
LimitedQuantitiesService getLimitedQuantities()
void setAddonLiability(AddOnLiabilityService value)
AddOnLiabilityService getAddonLiability()
void setHazardousGoods(HazardousGoodsService value)