GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
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 
31 @XmlAccessorType(XmlAccessType.FIELD)
32 @XmlType(name = "Vacations", propOrder = {
33  "startDate",
34  "endDate"
35 })
36 public class Vacations {
37 
38  @XmlElement(name = "StartDate", required = true)
39  protected String startDate;
40  @XmlElement(name = "EndDate", required = true)
41  protected String endDate;
42 
43  public Vacations() {
44 
45  }
46 
47  public Vacations(String startDate, String endDate) {
48 
49  this.startDate = startDate;
50  this.endDate = endDate;
51  }
52 
61  public String getStartDate() {
62  return startDate;
63  }
64 
73  public void setStartDate(String value) {
74  this.startDate = value;
75  }
76 
85  public String getEndDate() {
86  return endDate;
87  }
88 
97  public void setEndDate(String value) {
98  this.endDate = value;
99  }
100 
101 }