GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
DeliveryAtWorkService.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
39@XmlAccessorType(XmlAccessType.FIELD)
40@XmlType(name = "DeliveryAtWorkService", propOrder = {
41 "serviceName",
42 "recipientName",
43 "alternateRecipientName",
44 "building",
45 "floor",
46 "room",
47 "phonenumber"
48})
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")
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
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}