GLS ShipIT  2.8.11
GLS ShipIT - REST services
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 
37 @XmlAccessorType(XmlAccessType.FIELD)
38 @XmlType(name = "DeliveryAtWorkService", propOrder = {
39  "serviceName",
40  "recipientName",
41  "alternateRecipientName",
42  "building",
43  "floor",
44  "room",
45  "phonenumber"
46 })
47 public class DeliveryAtWorkService {
48 
49  @XmlElement(name = "ServiceName", required = true)
50  protected String serviceName;
51  @XmlElement(name = "RecipientName", required = true)
52  protected String recipientName;
53  @XmlElement(name = "AlternateRecipientName")
54  protected String alternateRecipientName;
55  @XmlElement(name = "Building", required = true)
56  protected String building;
57  @XmlElement(name = "Floor", required = true)
58  protected String floor;
59  @XmlElement(name = "Room")
60  protected String room;
61  @XmlElement(name = "Phonenumber")
62  protected String phonenumber;
63 
72  public String getServiceName() {
73  return serviceName;
74  }
75 
84  public void setServiceName(String value) {
85  this.serviceName = value;
86  }
87 
96  public String getRecipientName() {
97  return recipientName;
98  }
99 
108  public void setRecipientName(String value) {
109  this.recipientName = value;
110  }
111 
120  public String getAlternateRecipientName() {
121  return alternateRecipientName;
122  }
123 
132  public void setAlternateRecipientName(String value) {
133  this.alternateRecipientName = value;
134  }
135 
144  public String getBuilding() {
145  return building;
146  }
147 
156  public void setBuilding(String value) {
157  this.building = value;
158  }
159 
168  public String getFloor() {
169  return floor;
170  }
171 
180  public void setFloor(String value) {
181  this.floor = value;
182  }
183 
192  public String getRoom() {
193  return room;
194  }
195 
204  public void setRoom(String value) {
205  this.room = value;
206  }
207 
216  public String getPhonenumber() {
217  return phonenumber;
218  }
219 
228  public void setPhonenumber(String value) {
229  this.phonenumber = value;
230  }
231 
232 }