GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
OpeningClosingHours.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop;
3 
4 import java.util.ArrayList;
5 import java.util.List;
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 
33 @XmlAccessorType(XmlAccessType.FIELD)
34 @XmlType(name = "OpeningClosingHours", propOrder = {
35  "openingHours"
36 })
37 public class OpeningClosingHours {
38 
39  @XmlElement(name = "OpeningHours")
40  protected List<Hours> openingHours;
41 
64  public List<Hours> getOpeningHours() {
65  if (openingHours == null) {
66  openingHours = new ArrayList<Hours>();
67  }
68  return this.openingHours;
69  }
70 
71 }