2 package eu.gls_group.fpcs.v1.common;
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;
40 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name =
"ExchangeService", propOrder = {
49 @XmlElement(name =
"ServiceName", required =
true)
50 protected String serviceName;
51 @XmlElement(name = "
Address", required = true)
52 protected Address address;
53 @XmlElement(name = "ExpectedWeight", type = String.class)
55 @XmlSchemaType(name = "decimal")
56 protected BigDecimal expectedWeight;
57 @XmlElement(name = "ExchangeTrackID")
58 protected String exchangeTrackID;
68 public String getServiceName() {
81 this.serviceName = value;
105 this.address = value;
117 return expectedWeight;
129 this.expectedWeight = value;
141 return exchangeTrackID;
153 this.exchangeTrackID = value;
void setExchangeTrackID(String value)
BigDecimal getExpectedWeight()
String getExchangeTrackID()
void setAddress(Address value)
void setServiceName(String value)
void setExpectedWeight(BigDecimal value)