GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
OpeningClosingHours.java
Go to the documentation of this file.
1
2package eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop;
3
4import java.util.ArrayList;
5import java.util.List;
6import javax.xml.bind.annotation.XmlAccessType;
7import javax.xml.bind.annotation.XmlAccessorType;
8import javax.xml.bind.annotation.XmlElement;
9import javax.xml.bind.annotation.XmlType;
10
11
33@XmlAccessorType(XmlAccessType.FIELD)
34@XmlType(name = "OpeningClosingHours", propOrder = {
35 "openingHours"
36})
37public 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}