GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
ws/parcelshopsearch/Hours.java
Go to the documentation of this file.
1
2package eu.glsgroup.ws.parcelshopsearch;
3
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlElement;
7import javax.xml.bind.annotation.XmlType;
8
9
30@XmlAccessorType(XmlAccessType.FIELD)
31@XmlType(name = "Hours", propOrder = {
32 "from",
33 "to"
34})
35public 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}