GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
SporadicCollectionResponse.java
Go to the documentation of this file.
1
2package eu.glsgroup.fpcs.datatypes.soap.v1.sporadiccollection;
3
4import java.util.Date;
5import javax.xml.bind.annotation.XmlAccessType;
6import javax.xml.bind.annotation.XmlAccessorType;
7import javax.xml.bind.annotation.XmlElement;
8import javax.xml.bind.annotation.XmlRootElement;
9import javax.xml.bind.annotation.XmlSchemaType;
10import javax.xml.bind.annotation.XmlType;
11import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
12import org.w3._2001.xmlschema.Adapter3;
13
14
36@XmlAccessorType(XmlAccessType.FIELD)
37@XmlType(name = "", propOrder = {
38 "estimatedPickUpDate"
39})
40@XmlRootElement(name = "SporadicCollectionResponse")
42
43 @XmlElement(name = "EstimatedPickUpDate", required = true, type = String.class)
44 @XmlJavaTypeAdapter(Adapter3 .class)
45 @XmlSchemaType(name = "date")
46 protected Date estimatedPickUpDate;
47
56 public Date getEstimatedPickUpDate() {
57 return estimatedPickUpDate;
58 }
59
68 public void setEstimatedPickUpDate(Date value) {
69 this.estimatedPickUpDate = value;
70 }
71
72}