GLS ShipIT
GLS ShipIT - REST services
ParcelShop.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop;
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.XmlRootElement;
10 import javax.xml.bind.annotation.XmlType;
12 
13 
40 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name = "", propOrder = {
42  "parcelShopID",
43  "location",
44  "address",
45  "workingDay",
46  "airlineDistance"
47 })
48 @XmlRootElement(name = "ParcelShop")
49 public class ParcelShop {
50 
51  @XmlElement(name = "ParcelShopID", required = true)
52  protected String parcelShopID;
53  @XmlElement(name = "Location", required = true)
54  protected Location location;
55  @XmlElement(name = "Address", required = true)
56  protected Address address;
57  @XmlElement(name = "WorkingDay")
58  protected List<WorkingDay> workingDay;
59  @XmlElement(name = "AirlineDistance")
60  protected String airlineDistance;
61 
70  public String getParcelShopID() {
71  return parcelShopID;
72  }
73 
82  public void setParcelShopID(String value) {
83  this.parcelShopID = value;
84  }
85 
94  public Location getLocation() {
95  return location;
96  }
97 
106  public void setLocation(Location value) {
107  this.location = value;
108  }
109 
118  public Address getAddress() {
119  return address;
120  }
121 
130  public void setAddress(Address value) {
131  this.address = value;
132  }
133 
156  public List<WorkingDay> getWorkingDay() {
157  if (workingDay == null) {
158  workingDay = new ArrayList<WorkingDay>();
159  }
160  return this.workingDay;
161  }
162 
171  public String getAirlineDistance() {
172  return airlineDistance;
173  }
174 
183  public void setAirlineDistance(String value) {
184  this.airlineDistance = value;
185  }
186 
187 }
eu.glsgroup.fpcs
eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop.ParcelShop.getAddress
Address getAddress()
Definition: ParcelShop.java:118
eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop.ParcelShop.setAddress
void setAddress(Address value)
Definition: ParcelShop.java:130
eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop.ParcelShop.setLocation
void setLocation(Location value)
Definition: ParcelShop.java:106
eu.glsgroup.fpcs.datatypes
eu.glsgroup.fpcs.datatypes.soap
eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop.ParcelShop
Definition: ParcelShop.java:49
eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop.ParcelShop.getAirlineDistance
String getAirlineDistance()
Definition: ParcelShop.java:171
eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop.ParcelShop.setAirlineDistance
void setAirlineDistance(String value)
Definition: ParcelShop.java:183
eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop.ParcelShop.getLocation
Location getLocation()
Definition: ParcelShop.java:94
eu.glsgroup.fpcs.datatypes.soap.v1.common
Definition: AddOnLiabilityService.java:2
eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop.ParcelShop.setParcelShopID
void setParcelShopID(String value)
Definition: ParcelShop.java:82
eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop.ParcelShop.getWorkingDay
List< WorkingDay > getWorkingDay()
Definition: ParcelShop.java:156
eu.glsgroup
eu
eu.glsgroup.fpcs.datatypes.soap.v1.common.Address
Definition: common/Address.java:60
eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop.Location
Definition: parcelshop/Location.java:37
eu.glsgroup.fpcs.datatypes.soap.v1
eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop.WorkingDay
Definition: WorkingDay.java:41