1 package eu.gls_group.fpcs.v1.parcelshop;
     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;
    19 @WebServiceClient(name = 
"ParcelShopService",
    20                   wsdlLocation = 
"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");
    35                 .log(java.util.logging.Level.INFO,
    36                      "Can not initialize the default wsdl from {0}", 
"ParcelShop.wsdl");
    42         super(wsdlLocation, SERVICE);
    46         super(wsdlLocation, serviceName);
    50         super(WSDL_LOCATION, SERVICE);
    54         super(WSDL_LOCATION, SERVICE, features);
    58         super(wsdlLocation, SERVICE, features);
    61     public ParcelShopService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
    62         super(wsdlLocation, serviceName, features);
    73     @WebEndpoint(name = 
"ParcelShopPort")
    85     @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)