1 package eu.gls_group.fpcs.v1.parcelshop;
     3 import java.net.MalformedURLException;
     5 import javax.xml.namespace.QName;
     6 import javax.xml.ws.WebEndpoint;
     7 import javax.xml.ws.WebServiceClient;
     8 import javax.xml.ws.WebServiceFeature;
     9 import javax.xml.ws.Service;
    20 @WebServiceClient(name = 
"ParcelShopService", 
    21                   wsdlLocation = 
"file:soap-datatypes/src/main/resources/ParcelShop.wsdl",
    22                   targetNamespace = 
"http://fpcs.gls-group.eu/v1/ParcelShop") 
    27     public final static QName SERVICE = 
new QName(
"http://fpcs.gls-group.eu/v1/ParcelShop", 
"ParcelShopService");
    28     public final static QName ParcelShopPort = 
new QName(
"http://fpcs.gls-group.eu/v1/ParcelShop", 
"ParcelShopPort");
    32             url = 
new URL(
"file:soap-datatypes/src/main/resources/ParcelShop.wsdl");
    33         } 
catch (MalformedURLException e) {
    35                 .log(java.util.logging.Level.INFO, 
    36                      "Can not initialize the default wsdl from {0}", 
"file:soap-datatypes/src/main/resources/ParcelShop.wsdl");
    42         super(wsdlLocation, SERVICE);
    46         super(wsdlLocation, serviceName);
    50         super(WSDL_LOCATION, SERVICE);
    57         super(WSDL_LOCATION, SERVICE, features);
    64         super(wsdlLocation, SERVICE, features);
    70     public ParcelShopService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
    71         super(wsdlLocation, serviceName, features);
    79     @WebEndpoint(name = 
"ParcelShopPort")
    91     @WebEndpoint(name = 
"ParcelShopPort")
 ParcelShopService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features)
 
ParcelShopService(URL wsdlLocation)
 
ParcelShopService(URL wsdlLocation, WebServiceFeature ... features)
 
static final URL WSDL_LOCATION
 
ParcelShopService(WebServiceFeature ... features)
 
ParcelShopService(URL wsdlLocation, QName serviceName)