GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
DeliveryAtWorkService.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.common;
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 
39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name = "DeliveryAtWorkService", propOrder = {
41  "serviceName",
42  "recipientName",
43  "alternateRecipientName",
44  "building",
45  "floor",
46  "room",
47  "phonenumber"
48 })
49 public class DeliveryAtWorkService {
50 
51  @XmlElement(name = "ServiceName", required = true)
52  protected String serviceName;
53  @XmlElement(name = "RecipientName", required = true)
54  protected String recipientName;
55  @XmlElement(name = "AlternateRecipientName")
56  protected String alternateRecipientName;
57  @XmlElement(name = "Building", required = true)
58  protected String building;
59  @XmlElement(name = "Floor", required = true)
60  protected String floor;
61  @XmlElement(name = "Room")
62  protected String room;
63  @XmlElement(name = "Phonenumber", required = true)
64  protected String phonenumber;
65 
74  public String getServiceName() {
75  return serviceName;
76  }
77 
86  public void setServiceName(String value) {
87  this.serviceName = value;
88  }
89 
98  public String getRecipientName() {
99  return recipientName;
100  }
101 
110  public void setRecipientName(String value) {
111  this.recipientName = value;
112  }
113 
122  public String getAlternateRecipientName() {
123  return alternateRecipientName;
124  }
125 
134  public void setAlternateRecipientName(String value) {
135  this.alternateRecipientName = value;
136  }
137 
146  public String getBuilding() {
147  return building;
148  }
149 
158  public void setBuilding(String value) {
159  this.building = value;
160  }
161 
170  public String getFloor() {
171  return floor;
172  }
173 
182  public void setFloor(String value) {
183  this.floor = value;
184  }
185 
194  public String getRoom() {
195  return room;
196  }
197 
206  public void setRoom(String value) {
207  this.room = value;
208  }
209 
218  public String getPhonenumber() {
219  return phonenumber;
220  }
221 
230  public void setPhonenumber(String value) {
231  this.phonenumber = value;
232  }
233 
234 }