GLS ShipIT  2.8.11
GLS ShipIT - REST services
UnitService.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.common;
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.XmlType;
8 
9 
36 @XmlAccessorType(XmlAccessType.FIELD)
37 @XmlType(name = "UnitService", propOrder = {
38  "cash",
39  "addonLiability",
40  "hazardousGoods",
41  "exWorks",
42  "limitedQuantities"
43 })
44 public class UnitService {
45 
46  @XmlElement(name = "Cash")
47  protected CashService cash;
48  @XmlElement(name = "AddonLiability")
49  protected AddOnLiabilityService addonLiability;
50  @XmlElement(name = "HazardousGoods")
51  protected HazardousGoodsService hazardousGoods;
52  @XmlElement(name = "ExWorks")
53  protected ExWorksService exWorks;
54  @XmlElement(name = "LimitedQuantities")
55  protected LimitedQuantitiesService limitedQuantities;
56 
65  public CashService getCash() {
66  return cash;
67  }
68 
77  public void setCash(CashService value) {
78  this.cash = value;
79  }
80 
90  return addonLiability;
91  }
92 
102  this.addonLiability = value;
103  }
104 
114  return hazardousGoods;
115  }
116 
126  this.hazardousGoods = value;
127  }
128 
138  return exWorks;
139  }
140 
149  public void setExWorks(ExWorksService value) {
150  this.exWorks = value;
151  }
152 
162  return limitedQuantities;
163  }
164 
174  this.limitedQuantities = value;
175  }
176 
177 }
void setLimitedQuantities(LimitedQuantitiesService value)
void setHazardousGoods(HazardousGoodsService value)
void setAddonLiability(AddOnLiabilityService value)