GLS ShipIT  4.0.f3
GLS ShipIT - REST services
GLSParcelShop.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.ws.parcelshopsearch;
3 
4 import java.util.ArrayList;
5 import java.util.List;
6 import javax.xml.bind.annotation.XmlAccessType;
7 import javax.xml.bind.annotation.XmlAccessorType;
8 import javax.xml.bind.annotation.XmlElement;
9 import javax.xml.bind.annotation.XmlType;
10 
11 
40 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name = "GLSParcelShop", propOrder = {
42  "parcelShopId",
43  "address",
44  "phone",
45  "mobile",
46  "fax",
47  "email",
48  "url",
49  "glsCoordinates",
50  "glsWorkingDay",
51  "type"
52 })
53 public class GLSParcelShop {
54 
55  @XmlElement(name = "ParcelShopId", required = true)
56  protected String parcelShopId;
57  @XmlElement(name = "Address", required = true)
58  protected GLSAddress address;
59  @XmlElement(name = "Phone")
60  protected GLSPhonenumber phone;
61  @XmlElement(name = "Mobile")
62  protected GLSPhonenumber mobile;
63  @XmlElement(name = "Fax")
64  protected GLSPhonenumber fax;
65  @XmlElement(name = "Email", required = true)
66  protected String email;
67  @XmlElement(name = "URL", required = true)
68  protected String url;
69  @XmlElement(name = "GLSCoordinates", required = true)
70  protected GLSCoordinates glsCoordinates;
71  @XmlElement(name = "GLSWorkingDay")
72  protected List<GLSWorkingDay> glsWorkingDay;
73  @XmlElement(name = "Type", required = true)
74  protected String type;
75 
84  public String getParcelShopId() {
85  return parcelShopId;
86  }
87 
96  public void setParcelShopId(String value) {
97  this.parcelShopId = value;
98  }
99 
109  return address;
110  }
111 
120  public void setAddress(GLSAddress value) {
121  this.address = value;
122  }
123 
133  return phone;
134  }
135 
144  public void setPhone(GLSPhonenumber value) {
145  this.phone = value;
146  }
147 
157  return mobile;
158  }
159 
168  public void setMobile(GLSPhonenumber value) {
169  this.mobile = value;
170  }
171 
181  return fax;
182  }
183 
192  public void setFax(GLSPhonenumber value) {
193  this.fax = value;
194  }
195 
204  public String getEmail() {
205  return email;
206  }
207 
216  public void setEmail(String value) {
217  this.email = value;
218  }
219 
228  public String getURL() {
229  return url;
230  }
231 
240  public void setURL(String value) {
241  this.url = value;
242  }
243 
253  return glsCoordinates;
254  }
255 
264  public void setGLSCoordinates(GLSCoordinates value) {
265  this.glsCoordinates = value;
266  }
267 
290  public List<GLSWorkingDay> getGLSWorkingDay() {
291  if (glsWorkingDay == null) {
292  glsWorkingDay = new ArrayList<GLSWorkingDay>();
293  }
294  return this.glsWorkingDay;
295  }
296 
305  public String getType() {
306  return type;
307  }
308 
317  public void setType(String value) {
318  this.type = value;
319  }
320 
321 }