GLS ShipIT  2.8.11
GLS ShipIT - REST services
WorkingDay.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop;
3 
5 
6 import javax.xml.bind.annotation.XmlAccessType;
7 import javax.xml.bind.annotation.XmlAccessorType;
8 import javax.xml.bind.annotation.XmlElement;
9 import javax.xml.bind.annotation.XmlType;
10 
11 
34 @XmlAccessorType(XmlAccessType.FIELD)
35 @XmlType(name = "WorkingDay", propOrder = {
36  "dayOfWeek",
37  "openingHours",
38  "breaks"
39 })
40 public class WorkingDay {
41 
42  @XmlElement(name = "DayOfWeek", required = true)
43  protected DayOfWeek dayOfWeek;
44  @XmlElement(name = "OpeningHours", required = true)
45  protected OpeningClosingHours openingHours;
46  @XmlElement(name = "Breaks")
47  protected OpeningClosingHours breaks;
48 
57  public DayOfWeek getDayOfWeek() {
58  return dayOfWeek;
59  }
60 
69  public void setDayOfWeek(DayOfWeek value) {
70  this.dayOfWeek = value;
71  }
72 
82  return openingHours;
83  }
84 
93  public void setOpeningHours(OpeningClosingHours value) {
94  this.openingHours = value;
95  }
96 
106  return breaks;
107  }
108 
117  public void setBreaks(OpeningClosingHours value) {
118  this.breaks = value;
119  }
120 
121 }