2 package eu.glsgroup.fpcs.datatypes.soap.v1.common;
6 import javax.xml.bind.annotation.XmlAccessType;
7 import javax.xml.bind.annotation.XmlAccessorType;
8 import javax.xml.bind.annotation.XmlElement;
9 import javax.xml.bind.annotation.XmlType;
10 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
11 import java.math.BigDecimal;
38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name =
"IntercompanyService", propOrder = {
47 @XmlElement(name =
"ServiceName", required =
true)
48 protected String serviceName;
49 @XmlElement(name = "
Address", required = true)
50 protected Address address;
51 @XmlElement(name = "NumberOfLabels")
52 protected
long numberOfLabels;
53 @XmlElement(name = "ExpectedWeight", type = String.class)
55 protected BigDecimal expectedWeight;
65 public String getServiceName() {
78 this.serviceName = value;
102 this.address = value;
110 return numberOfLabels;
118 this.numberOfLabels = value;
130 return expectedWeight;
142 this.expectedWeight = value;
void setServiceName(String value)
BigDecimal getExpectedWeight()
void setAddress(Address value)
void setNumberOfLabels(long value)
void setExpectedWeight(BigDecimal value)