GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
AddOnLiabilityService.java
Go to the documentation of this file.
1
2package eu.gls_group.fpcs.v1.common;
3
4import java.math.BigDecimal;
5import javax.xml.bind.annotation.XmlAccessType;
6import javax.xml.bind.annotation.XmlAccessorType;
7import javax.xml.bind.annotation.XmlElement;
8import javax.xml.bind.annotation.XmlSchemaType;
9import javax.xml.bind.annotation.XmlType;
10import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
11import org.w3._2001.xmlschema.Adapter1;
12
13
40@XmlAccessorType(XmlAccessType.FIELD)
41@XmlType(name = "AddOnLiabilityService", propOrder = {
42 "serviceName",
43 "amount",
44 "currency",
45 "parcelContent"
46})
48
49 @XmlElement(name = "ServiceName", required = true)
50 protected String serviceName;
51 @XmlElement(name = "Amount", required = true, type = String.class)
52 @XmlJavaTypeAdapter(Adapter1 .class)
53 @XmlSchemaType(name = "decimal")
54 protected BigDecimal amount;
55 @XmlElement(name = "Currency", required = true)
56 protected String currency;
57 @XmlElement(name = "ParcelContent")
58 protected String parcelContent;
59
68 public String getServiceName() {
69 return serviceName;
70 }
71
80 public void setServiceName(String value) {
81 this.serviceName = value;
82 }
83
92 public BigDecimal getAmount() {
93 return amount;
94 }
95
104 public void setAmount(BigDecimal value) {
105 this.amount = value;
106 }
107
116 public String getCurrency() {
117 return currency;
118 }
119
128 public void setCurrency(String value) {
129 this.currency = value;
130 }
131
140 public String getParcelContent() {
141 return parcelContent;
142 }
143
152 public void setParcelContent(String value) {
153 this.parcelContent = value;
154 }
155
156}