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 =
"IntercompanyService", propOrder = {
49 @XmlElement(name =
"ServiceName", required =
true)
50 protected String serviceName;
51 @XmlElement(name = "
Address", required = true)
53 @XmlElement(name = "NumberOfLabels")
54 @XmlSchemaType(name = "unsignedInt")
55 protected
long numberOfLabels;
56 @XmlElement(name = "ExpectedWeight", type = String.class)
58 @XmlSchemaType(name = "decimal")
59 protected BigDecimal expectedWeight;
69 public String getServiceName() {
82 this.serviceName = value;
106 this.address = value;
114 return numberOfLabels;
122 this.numberOfLabels = value;
134 return expectedWeight;
146 this.expectedWeight = value;
void setServiceName(String value)
void setExpectedWeight(BigDecimal value)
void setAddress(Address value)
BigDecimal getExpectedWeight()
void setNumberOfLabels(long value)