GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
ws/parcelshopsearch/Hours.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.ws.parcelshopsearch;
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;
8 
9 
30 @XmlAccessorType(XmlAccessType.FIELD)
31 @XmlType(name = "Hours", propOrder = {
32  "from",
33  "to"
34 })
35 public class Hours {
36 
37  @XmlElement(name = "From", required = true)
38  protected String from;
39  @XmlElement(name = "To", required = true)
40  protected String to;
41 
50  public String getFrom() {
51  return from;
52  }
53 
62  public void setFrom(String value) {
63  this.from = value;
64  }
65 
74  public String getTo() {
75  return to;
76  }
77 
86  public void setTo(String value) {
87  this.to = value;
88  }
89 
90 }