2package eu.gls_group.fpcs.v1.common;
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;
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)
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)
String getExchangeTrackID()
BigDecimal getExpectedWeight()
void setAddress(Address value)
void setServiceName(String value)
void setExpectedWeight(BigDecimal value)