1 package eu.glsgroup.ws.parcelshopsearch;
4 import javax.xml.namespace.QName;
5 import javax.xml.ws.WebEndpoint;
6 import javax.xml.ws.WebServiceClient;
7 import javax.xml.ws.WebServiceFeature;
8 import javax.xml.ws.Service;
15 @WebServiceClient(name =
"ParcelShopSearch",
16 wsdlLocation =
"2010_01_ParcelShopSearch.wsdl",
17 targetNamespace =
"http://2010_01.ParcelShopSearch.gls-group.eu/ParcelShopSearch/")
22 public final static QName SERVICE =
new QName(
"http://2010_01.ParcelShopSearch.gls-group.eu/ParcelShopSearch/",
"ParcelShopSearch");
23 public final static QName
ParcelShopSearch =
new QName(
"http://2010_01.ParcelShopSearch.gls-group.eu/ParcelShopSearch/",
"ParcelShopSearch");
31 .log(java.util.logging.Level.INFO,
32 "Can not initialize the default wsdl from {0}",
"2010_01_ParcelShopSearch.wsdl");
38 super(wsdlLocation, SERVICE);
42 super(wsdlLocation, serviceName);
46 super(WSDL_LOCATION, SERVICE);
50 super(WSDL_LOCATION, SERVICE, features);
54 super(wsdlLocation, SERVICE, features);
58 super(wsdlLocation, serviceName, features);
69 @WebEndpoint(name =
"ParcelShopSearch")
70 public ParcelShopSearch getParcelShopSearch() {
71 return super.getPort(ParcelShopSearch, ParcelShopSearch.class);
81 @WebEndpoint(name =
"ParcelShopSearch")
82 public ParcelShopSearch getParcelShopSearch(WebServiceFeature... features) {
83 return super.getPort(ParcelShopSearch, ParcelShopSearch.class, features);
ParcelShopSearch_Service(URL wsdlLocation, WebServiceFeature ... features)
ParcelShopSearch_Service()
ParcelShopSearch_Service(URL wsdlLocation, QName serviceName)
ParcelShopSearch_Service(URL wsdlLocation, QName serviceName, WebServiceFeature ... features)
ParcelShopSearch_Service(URL wsdlLocation)
ParcelShopSearch_Service(WebServiceFeature ... features)
static final URL WSDL_LOCATION