GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
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 
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name = "Hours", propOrder = {
37  "from",
38  "to"
39 })
40 public class Hours {
41 
42  @XmlElement(name = "From", required = true)
43  @XmlSchemaType(name = "time")
44  protected XMLGregorianCalendar from;
45  @XmlElement(name = "To", required = true)
46  @XmlSchemaType(name = "time")
47  protected XMLGregorianCalendar to;
48 
57  public XMLGregorianCalendar getFrom() {
58  return from;
59  }
60 
69  public void setFrom(XMLGregorianCalendar value) {
70  this.from = value;
71  }
72 
81  public XMLGregorianCalendar getTo() {
82  return to;
83  }
84 
93  public void setTo(XMLGregorianCalendar value) {
94  this.to = value;
95  }
96 
97 }