1 package eu.gls_group.fpcs.v1.parcelshop;
3 import javax.xml.namespace.QName;
4 import javax.xml.ws.Service;
5 import javax.xml.ws.WebEndpoint;
6 import javax.xml.ws.WebServiceClient;
7 import javax.xml.ws.WebServiceFeature;
8 import java.net.MalformedURLException;
19 @WebServiceClient(name =
"ParcelShopService",
20 wsdlLocation =
"file:soap-datatypes/src/main/resources/ParcelShop.wsdl",
21 targetNamespace =
"http://fpcs.gls-group.eu/v1/ParcelShop")
26 public final static QName SERVICE =
new QName(
"http://fpcs.gls-group.eu/v1/ParcelShop",
"ParcelShopService");
27 public final static QName ParcelShopPort =
new QName(
"http://fpcs.gls-group.eu/v1/ParcelShop",
"ParcelShopPort");
31 url =
new URL(
"file:soap-datatypes/src/main/resources/ParcelShop.wsdl");
32 }
catch (MalformedURLException e) {
34 .log(java.util.logging.Level.INFO,
35 "Can not initialize the default wsdl from {0}",
"file:soap-datatypes/src/main/resources/ParcelShop.wsdl");
41 super(wsdlLocation, SERVICE);
45 super(wsdlLocation, serviceName);
49 super(WSDL_LOCATION, SERVICE);
57 super(WSDL_LOCATION, SERVICE, features);
65 super(wsdlLocation, SERVICE, features);
71 public ParcelShopService(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
73 super(wsdlLocation, serviceName, features);
81 @WebEndpoint(name =
"ParcelShopPort")
93 @WebEndpoint(name =
"ParcelShopPort")
ParcelShopService(WebServiceFeature... features)
ParcelShopService(URL wsdlLocation, QName serviceName, WebServiceFeature... features)
ParcelShopService(URL wsdlLocation)
ParcelShopService(URL wsdlLocation, WebServiceFeature... features)
static final URL WSDL_LOCATION
ParcelShopService(URL wsdlLocation, QName serviceName)