GLS ShipIT  3.3.20
GLS ShipIT - SOAP services
AddOnLiabilityService.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.common;
3 
4 import java.math.BigDecimal;
5 import javax.xml.bind.annotation.XmlAccessType;
6 import javax.xml.bind.annotation.XmlAccessorType;
7 import javax.xml.bind.annotation.XmlElement;
8 import javax.xml.bind.annotation.XmlSchemaType;
9 import javax.xml.bind.annotation.XmlType;
10 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
12 
13 
40 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name = "AddOnLiabilityService", propOrder = {
42  "serviceName",
43  "amount",
44  "currency",
45  "parcelContent"
46 })
47 public class AddOnLiabilityService {
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 }