2 package eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop;
 
    4 import java.util.ArrayList;
 
    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 eu.glsgroup.fpcs.datatypes.soap.v1.common.Address;
 
   41 @XmlAccessorType(XmlAccessType.FIELD)
 
   42 @XmlType(name = 
"", propOrder = {
 
   50 @XmlRootElement(name = 
"ParcelShop")
 
   53     @XmlElement(name = 
"ParcelShopID", required = 
true)
 
   54     protected String parcelShopID;
 
   57     @XmlElement(name = "
Address", required = true)
 
   58     protected Address address;
 
   59     @XmlElement(name = "Holidays")
 
   63     @XmlElement(name = "AirlineDistance")
 
   64     protected String airlineDistance;
 
   74     public String getParcelShopID() {
 
   87         this.parcelShopID = value;
 
  111         this.location = value;
 
  135         this.address = value;
 
  161         if (holidays == null) {
 
  162             holidays = 
new ArrayList<>();
 
  164         return this.holidays;
 
  190         if (workingDay == null) {
 
  191             workingDay = 
new ArrayList<>();
 
  193         return this.workingDay;
 
  205         return airlineDistance;
 
  217         this.airlineDistance = value;