GLS ShipIT  2.8.11
GLS ShipIT - REST services
GLSParcelShop.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.ws.parcelshopsearch;
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 import java.util.ArrayList;
9 import java.util.List;
10 
11 
37 @XmlAccessorType(XmlAccessType.FIELD)
38 @XmlType(name = "GLSParcelShop", propOrder = {
39  "parcelShopId",
40  "address",
41  "phone",
42  "mobile",
43  "fax",
44  "email",
45  "url",
46  "glsCoordinates",
47  "glsWorkingDay"
48 })
49 public class GLSParcelShop {
50 
51  @XmlElement(name = "ParcelShopId", required = true)
52  protected String parcelShopId;
53  @XmlElement(name = "Address", required = true)
54  protected GLSAddress address;
55  @XmlElement(name = "Phone")
56  protected GLSPhonenumber phone;
57  @XmlElement(name = "Mobile")
58  protected GLSPhonenumber mobile;
59  @XmlElement(name = "Fax")
60  protected GLSPhonenumber fax;
61  @XmlElement(name = "Email", required = true)
62  protected String email;
63  @XmlElement(name = "URL", required = true)
64  protected String url;
65  @XmlElement(name = "GLSCoordinates", required = true)
66  protected GLSCoordinates glsCoordinates;
67  @XmlElement(name = "GLSWorkingDay")
68  protected List<GLSWorkingDay> glsWorkingDay;
69 
78  public String getParcelShopId() {
79  return parcelShopId;
80  }
81 
90  public void setParcelShopId(String value) {
91  this.parcelShopId = value;
92  }
93 
103  return address;
104  }
105 
114  public void setAddress(GLSAddress value) {
115  this.address = value;
116  }
117 
127  return phone;
128  }
129 
138  public void setPhone(GLSPhonenumber value) {
139  this.phone = value;
140  }
141 
151  return mobile;
152  }
153 
162  public void setMobile(GLSPhonenumber value) {
163  this.mobile = value;
164  }
165 
175  return fax;
176  }
177 
186  public void setFax(GLSPhonenumber value) {
187  this.fax = value;
188  }
189 
198  public String getEmail() {
199  return email;
200  }
201 
210  public void setEmail(String value) {
211  this.email = value;
212  }
213 
222  public String getURL() {
223  return url;
224  }
225 
234  public void setURL(String value) {
235  this.url = value;
236  }
237 
247  return glsCoordinates;
248  }
249 
258  public void setGLSCoordinates(GLSCoordinates value) {
259  this.glsCoordinates = value;
260  }
261 
284  public List<GLSWorkingDay> getGLSWorkingDay() {
285  if (glsWorkingDay == null) {
286  glsWorkingDay = new ArrayList<GLSWorkingDay>();
287  }
288  return this.glsWorkingDay;
289  }
290 
291 }