GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
Vacations.java
Go to the documentation of this file.
1
2package eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop;
3
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlElement;
7import javax.xml.bind.annotation.XmlType;
8
9
32@XmlAccessorType(XmlAccessType.FIELD)
33@XmlType(name = "Vacations", propOrder = {
34 "startDate",
35 "endDate"
36})
37public 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}