GLS ShipIT  3.3.20
GLS ShipIT - SOAP services
Vacations.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop;
3 
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;
8 
9 
32 @XmlAccessorType(XmlAccessType.FIELD)
33 @XmlType(name = "Vacations", propOrder = {
34  "startDate",
35  "endDate"
36 })
37 public class Vacations {
38 
39  @XmlElement(name = "StartDate", required = true)
40  protected String startDate;
41  @XmlElement(name = "EndDate", required = true)
42  protected String endDate;
43 
52  public String getStartDate() {
53  return startDate;
54  }
55 
64  public void setStartDate(String value) {
65  this.startDate = value;
66  }
67 
76  public String getEndDate() {
77  return endDate;
78  }
79 
88  public void setEndDate(String value) {
89  this.endDate = value;
90  }
91 
92 }