GLS ShipIT  2.8.11
GLS ShipIT - REST services
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 
28 @XmlAccessorType(XmlAccessType.FIELD)
29 @XmlType(name = "Hours", propOrder = {
30  "from",
31  "to"
32 })
33 public class Hours {
34 
35  @XmlElement(name = "From", required = true)
36  protected String from;
37  @XmlElement(name = "To", required = true)
38  protected String to;
39 
48  public String getFrom() {
49  return from;
50  }
51 
60  public void setFrom(String value) {
61  this.from = value;
62  }
63 
72  public String getTo() {
73  return to;
74  }
75 
84  public void setTo(String value) {
85  this.to = value;
86  }
87 
88 }