GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
GLSWorkingDay.java
Go to the documentation of this file.
1
2package eu.glsgroup.ws.parcelshopsearch;
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
51@XmlAccessorType(XmlAccessType.FIELD)
52@XmlType(name = "GLSWorkingDay", propOrder = {
53 "day",
54 "openingHours",
55 "breaks"
56})
57public class GLSWorkingDay {
58
59 @XmlElement(name = "Day", required = true)
60 protected String day;
61 @XmlElement(name = "OpeningHours", required = true)
62 protected GLSWorkingDay.OpeningHours openingHours;
63 @XmlElement(name = "Breaks", required = true)
64 protected GLSWorkingDay.Breaks breaks;
65
74 public String getDay() {
75 return day;
76 }
77
86 public void setDay(String value) {
87 this.day = value;
88 }
89
98 public GLSWorkingDay.OpeningHours getOpeningHours() {
99 return openingHours;
100 }
101
111 this.openingHours = value;
112 }
113
122 public GLSWorkingDay.Breaks getBreaks() {
123 return breaks;
124 }
125
134 public void setBreaks(GLSWorkingDay.Breaks value) {
135 this.breaks = value;
136 }
137
138
158 @XmlAccessorType(XmlAccessType.FIELD)
159 @XmlType(name = "", propOrder = {
160 "hours"
161 })
162 public static class Breaks {
163
164 @XmlElement(name = "Hours", required = true)
165 protected Hours hours;
166
175 public Hours getHours() {
176 return hours;
177 }
178
187 public void setHours(Hours value) {
188 this.hours = value;
189 }
190
191 }
192
193
213 @XmlAccessorType(XmlAccessType.FIELD)
214 @XmlType(name = "", propOrder = {
215 "hours"
216 })
217 public static class OpeningHours {
218
219 @XmlElement(name = "Hours", required = true)
220 protected Hours hours;
221
230 public Hours getHours() {
231 return hours;
232 }
233
242 public void setHours(Hours value) {
243 this.hours = value;
244 }
245
246 }
247
248}
GLSWorkingDay.OpeningHours getOpeningHours()
void setBreaks(GLSWorkingDay.Breaks value)
void setOpeningHours(GLSWorkingDay.OpeningHours value)