GLS ShipIT  2.8.11
GLS ShipIT - SOAP services
fpcs/datatypes/soap/v1/parcelshop/Hours.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.XmlSchemaType;
8 import javax.xml.bind.annotation.XmlType;
9 import javax.xml.datatype.XMLGregorianCalendar;
10 
11 
33 @XmlAccessorType(XmlAccessType.FIELD)
34 @XmlType(name = "Hours", propOrder = {
35  "from",
36  "to"
37 })
38 public class Hours {
39 
40  @XmlElement(name = "From", required = true)
41  @XmlSchemaType(name = "time")
42  protected XMLGregorianCalendar from;
43  @XmlElement(name = "To", required = true)
44  @XmlSchemaType(name = "time")
45  protected XMLGregorianCalendar to;
46 
55  public XMLGregorianCalendar getFrom() {
56  return from;
57  }
58 
67  public void setFrom(XMLGregorianCalendar value) {
68  this.from = value;
69  }
70 
79  public XMLGregorianCalendar getTo() {
80  return to;
81  }
82 
91  public void setTo(XMLGregorianCalendar value) {
92  this.to = value;
93  }
94 
95 }