GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
WorkingDay.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.XmlSchemaType;
8import javax.xml.bind.annotation.XmlType;
9import eu.gls_group.fpcs.v1.common.DayOfWeek;
10
11
37@XmlAccessorType(XmlAccessType.FIELD)
38@XmlType(name = "WorkingDay", propOrder = {
39 "dayOfWeek",
40 "openingHours",
41 "breaks"
42})
43public class WorkingDay {
44
45 @XmlElement(name = "DayOfWeek")
46 @XmlSchemaType(name = "string")
47 protected DayOfWeek dayOfWeek;
48 @XmlElement(name = "OpeningHours")
49 protected OpeningClosingHours openingHours;
50 @XmlElement(name = "Breaks")
51 protected OpeningClosingHours breaks;
52
61 public DayOfWeek getDayOfWeek() {
62 return dayOfWeek;
63 }
64
73 public void setDayOfWeek(DayOfWeek value) {
74 this.dayOfWeek = value;
75 }
76
86 return openingHours;
87 }
88
98 this.openingHours = value;
99 }
100
110 return breaks;
111 }
112
121 public void setBreaks(OpeningClosingHours value) {
122 this.breaks = value;
123 }
124
125}