2 package eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop;
4 import javax.xml.bind.annotation.XmlAccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlElement;
7 import javax.xml.bind.annotation.XmlType;
31 @XmlAccessorType(XmlAccessType.FIELD)
32 @XmlType(name =
"Vacations", propOrder = {
38 @XmlElement(name =
"StartDate", required =
true)
39 protected String startDate;
40 @XmlElement(name = "EndDate", required = true)
41 protected String endDate;
47 public Vacations(String startDate, String endDate) {
49 this.startDate = startDate;
50 this.endDate = endDate;
74 this.startDate = value;