GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
Return.java
Go to the documentation of this file.
1
2package eu.gls_group.fpcs.v1.common;
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
32@XmlAccessorType(XmlAccessType.FIELD)
33@XmlType(name = "Return", propOrder = {
34 "address"
35})
36public class Return {
37
38 @XmlElement(name = "Address")
39 protected Address address;
40
49 public Address getAddress() {
50 return address;
51 }
52
61 public void setAddress(Address value) {
62 this.address = value;
63 }
64
65}
void setAddress(Address value)
Definition Return.java:61