2 package eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop;
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;
11 import java.util.ArrayList;
12 import java.util.List;
39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name =
"", propOrder = {
47 @XmlRootElement(name =
"ParcelShop")
50 @XmlElement(name =
"ParcelShopID", required =
true)
51 protected String parcelShopID;
52 @XmlElement(name = "
Location", required = true)
53 protected Location location;
54 @XmlElement(name = "
Address", required = true)
55 protected Address address;
58 @XmlElement(name = "AirlineDistance")
59 protected String airlineDistance;
69 public String getParcelShopID() {
82 this.parcelShopID = value;
106 this.location = value;
130 this.address = value;
156 if (workingDay == null) {
157 workingDay =
new ArrayList<WorkingDay>();
159 return this.workingDay;
171 return airlineDistance;
183 this.airlineDistance = value;
List< WorkingDay > getWorkingDay()
void setLocation(Location value)
String getAirlineDistance()
void setParcelShopID(String value)
void setAirlineDistance(String value)
void setAddress(Address value)