2package eu.glsgroup.fpcs.datatypes.soap.v1.sporadiccollection;
4import java.math.BigDecimal;
6import javax.xml.bind.annotation.XmlAccessType;
7import javax.xml.bind.annotation.XmlAccessorType;
8import javax.xml.bind.annotation.XmlElement;
9import javax.xml.bind.annotation.XmlRootElement;
10import javax.xml.bind.annotation.XmlSchemaType;
11import javax.xml.bind.annotation.XmlType;
12import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
13import eu.gls_group.fpcs.v1.common.ProductType;
14import org.w3._2001.xmlschema.Adapter1;
15import org.w3._2001.xmlschema.Adapter3;
45@XmlAccessorType(XmlAccessType.FIELD)
46@XmlType(name =
"", propOrder = {
48 "preferredPickUpDate",
51 "expectedTotalWeight",
53 "additionalInformation"
55@XmlRootElement(name =
"SporadicCollection")
58 @XmlElement(name =
"ContactID", required =
true)
59 protected String contactID;
60 @XmlElement(name = "PreferredPickUpDate", required = true, type = String.class)
62 @XmlSchemaType(name = "date")
63 protected Date preferredPickUpDate;
64 @XmlElement(name = "NumberOfParcels")
65 @XmlSchemaType(name = "unsignedInt")
66 protected
long numberOfParcels;
67 @XmlElement(name = "Product", required = true)
68 @XmlSchemaType(name = "
string")
70 @XmlElement(name = "ExpectedTotalWeight", type = String.class)
72 @XmlSchemaType(name = "decimal")
73 protected BigDecimal expectedTotalWeight;
74 @XmlElement(name = "ContainsHazGoods")
75 protected Boolean containsHazGoods;
76 @XmlElement(name = "AdditionalInformation")
77 protected String additionalInformation;
87 public String getContactID() {
100 this.contactID = value;
112 return preferredPickUpDate;
124 this.preferredPickUpDate = value;
132 return numberOfParcels;
140 this.numberOfParcels = value;
164 this.product = value;
176 return expectedTotalWeight;
188 this.expectedTotalWeight = value;
200 return containsHazGoods;
212 this.containsHazGoods = value;
224 return additionalInformation;
236 this.additionalInformation = value;
String getAdditionalInformation()
void setContactID(String value)
void setPreferredPickUpDate(Date value)
Date getPreferredPickUpDate()
void setContainsHazGoods(Boolean value)
Boolean isContainsHazGoods()
long getNumberOfParcels()
BigDecimal getExpectedTotalWeight()
void setExpectedTotalWeight(BigDecimal value)
void setProduct(ProductType value)
void setNumberOfParcels(long value)
void setAdditionalInformation(String value)