GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
Source.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.XmlType;
8 
9 
31 @XmlAccessorType(XmlAccessType.FIELD)
32 @XmlType(name = "Source", propOrder = {
33  "address"
34 })
35 public class Source {
36 
37  @XmlElement(name = "Address", required = true)
38  protected Address address;
39 
48  public Address getAddress() {
49  return address;
50  }
51 
60  public void setAddress(Address value) {
61  this.address = value;
62  }
63 
64 }