GLS ShipIT  3.0.6
GLS ShipIT - SOAP services
WorkingDay.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;
9 
10 
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name = "WorkingDay", propOrder = {
37  "dayOfWeek",
38  "openingHours",
39  "breaks"
40 })
41 public class WorkingDay {
42 
43  @XmlElement(name = "DayOfWeek", required = true)
44  protected DayOfWeek dayOfWeek;
45  @XmlElement(name = "OpeningHours", required = true)
46  protected OpeningClosingHours openingHours;
47  @XmlElement(name = "Breaks")
48  protected OpeningClosingHours breaks;
49 
58  public DayOfWeek getDayOfWeek() {
59  return dayOfWeek;
60  }
61 
70  public void setDayOfWeek(DayOfWeek value) {
71  this.dayOfWeek = value;
72  }
73 
83  return openingHours;
84  }
85 
94  public void setOpeningHours(OpeningClosingHours value) {
95  this.openingHours = value;
96  }
97 
107  return breaks;
108  }
109 
118  public void setBreaks(OpeningClosingHours value) {
119  this.breaks = value;
120  }
121 
122 }