GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
fpcs/datatypes/soap/v1/parcelshop/ObjectFactory.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop;
3 
4 import javax.xml.bind.JAXBElement;
5 import javax.xml.bind.annotation.XmlElementDecl;
6 import javax.xml.bind.annotation.XmlRegistry;
7 import javax.xml.namespace.QName;
8 
9 
24 @XmlRegistry
25 public class ObjectFactory {
26 
27  private final static QName _ParcelShopID_QNAME = new QName("http://fpcs.gls-group.eu/v1/ParcelShop", "ParcelShopID");
28  private final static QName _CountryCode_QNAME = new QName("http://fpcs.gls-group.eu/v1/ParcelShop", "CountryCode");
29 
34  public ObjectFactory() {
35  }
36 
42  return new ListOfParcelShop();
43  }
44 
50  return new ParcelShop();
51  }
52 
58  return new Location();
59  }
60 
66  return new WorkingDay();
67  }
68 
74  return new Vacations();
75  }
76 
81  public Area createArea() {
82  return new Area();
83  }
84 
90  return new ParcelShopSearchDistance();
91  }
92 
98  return new ParcelShopSearchLocation();
99  }
100 
106  return new InvalidParcelShopIDFault();
107  }
108 
114  return new OpeningClosingHours();
115  }
116 
121  public Hours createHours() {
122  return new Hours();
123  }
124 
130  return new UnitItem();
131  }
132 
138  return new PODItem();
139  }
140 
149  @XmlElementDecl(namespace = "http://fpcs.gls-group.eu/v1/ParcelShop", name = "ParcelShopID")
150  public JAXBElement<String> createParcelShopID(String value) {
151  return new JAXBElement<String>(_ParcelShopID_QNAME, String.class, null, value);
152  }
153 
162  @XmlElementDecl(namespace = "http://fpcs.gls-group.eu/v1/ParcelShop", name = "CountryCode")
163  public JAXBElement<String> createCountryCode(String value) {
164  return new JAXBElement<String>(_CountryCode_QNAME, String.class, null, value);
165  }
166 
167 }