GLS ShipIT  3.0.6
GLS ShipIT - REST services
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 
41  public Area createArea() {
42  return new Area();
43  }
44 
50  return new Location();
51  }
52 
58  return new ListOfParcelShop();
59  }
60 
66  return new ParcelShop();
67  }
68 
74  return new WorkingDay();
75  }
76 
82  return new InvalidParcelShopIDFault();
83  }
84 
90  return new ParcelShopSearchLocation();
91  }
92 
98  return new OpeningClosingHours();
99  }
100 
106  return new UnitItem();
107  }
108 
113  public Hours createHours() {
114  return new Hours();
115  }
116 
122  return new PODItem();
123  }
124 
129  @XmlElementDecl(namespace = "http://fpcs.gls-group.eu/v1/ParcelShop", name = "ParcelShopID")
130  public JAXBElement<String> createParcelShopID(String value) {
131  return new JAXBElement<String>(_ParcelShopID_QNAME, String.class, null, value);
132  }
133 
138  @XmlElementDecl(namespace = "http://fpcs.gls-group.eu/v1/ParcelShop", name = "CountryCode")
139  public JAXBElement<String> createCountryCode(String value) {
140  return new JAXBElement<String>(_CountryCode_QNAME, String.class, null, value);
141  }
142 
143 }