GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
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 
38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "UnitService", propOrder = {
40  "cash",
41  "addonLiability",
42  "hazardousGoods",
43  "exWorks",
44  "limitedQuantities"
45 })
46 public 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 }