GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
DeliveryTimeFrame.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.timeframe;
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.XmlRootElement;
8 import javax.xml.bind.annotation.XmlType;
9 
10 
34 @XmlAccessorType(XmlAccessType.FIELD)
35 @XmlType(name = "", propOrder = {
36  "from",
37  "to"
38 })
39 @XmlRootElement(name = "DeliveryTimeFrame")
40 public class DeliveryTimeFrame {
41 
42  @XmlElement(name = "From", required = true)
43  protected Hours from;
44  @XmlElement(name = "To", required = true)
45  protected Hours to;
46 
55  public Hours getFrom() {
56  return from;
57  }
58 
67  public void setFrom(Hours value) {
68  this.from = value;
69  }
70 
79  public Hours getTo() {
80  return to;
81  }
82 
91  public void setTo(Hours value) {
92  this.to = value;
93  }
94 
95 }