GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
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 
39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name = "GLSParcelShop", propOrder = {
41  "parcelShopId",
42  "address",
43  "phone",
44  "mobile",
45  "fax",
46  "email",
47  "url",
48  "glsCoordinates",
49  "glsWorkingDay"
50 })
51 public class GLSParcelShop {
52 
53  @XmlElement(name = "ParcelShopId", required = true)
54  protected String parcelShopId;
55  @XmlElement(name = "Address", required = true)
56  protected GLSAddress address;
57  @XmlElement(name = "Phone")
58  protected GLSPhonenumber phone;
59  @XmlElement(name = "Mobile")
60  protected GLSPhonenumber mobile;
61  @XmlElement(name = "Fax")
62  protected GLSPhonenumber fax;
63  @XmlElement(name = "Email", required = true)
64  protected String email;
65  @XmlElement(name = "URL", required = true)
66  protected String url;
67  @XmlElement(name = "GLSCoordinates", required = true)
68  protected GLSCoordinates glsCoordinates;
69  @XmlElement(name = "GLSWorkingDay")
70  protected List<GLSWorkingDay> glsWorkingDay;
71 
80  public String getParcelShopId() {
81  return parcelShopId;
82  }
83 
92  public void setParcelShopId(String value) {
93  this.parcelShopId = value;
94  }
95 
105  return address;
106  }
107 
116  public void setAddress(GLSAddress value) {
117  this.address = value;
118  }
119 
129  return phone;
130  }
131 
140  public void setPhone(GLSPhonenumber value) {
141  this.phone = value;
142  }
143 
153  return mobile;
154  }
155 
164  public void setMobile(GLSPhonenumber value) {
165  this.mobile = value;
166  }
167 
177  return fax;
178  }
179 
188  public void setFax(GLSPhonenumber value) {
189  this.fax = value;
190  }
191 
200  public String getEmail() {
201  return email;
202  }
203 
212  public void setEmail(String value) {
213  this.email = value;
214  }
215 
224  public String getURL() {
225  return url;
226  }
227 
236  public void setURL(String value) {
237  this.url = value;
238  }
239 
249  return glsCoordinates;
250  }
251 
260  public void setGLSCoordinates(GLSCoordinates value) {
261  this.glsCoordinates = value;
262  }
263 
286  public List<GLSWorkingDay> getGLSWorkingDay() {
287  if (glsWorkingDay == null) {
288  glsWorkingDay = new ArrayList<GLSWorkingDay>();
289  }
290  return this.glsWorkingDay;
291  }
292 
293 }