1 package eu.gls_group.fpcs.v1.shipmentprocessing;
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;
21 @WebServiceClient(name =
"ShipmentProcessingService",
22 wsdlLocation =
"file:soap-datatypes/src/main/resources/ShipmentProcessing.wsdl",
23 targetNamespace =
"http://fpcs.gls-group.eu/v1/ShipmentProcessing")
28 public final static QName SERVICE =
new QName(
"http://fpcs.gls-group.eu/v1/ShipmentProcessing",
"ShipmentProcessingService");
29 public final static QName ShipmentProcessingBinding =
new QName(
"http://fpcs.gls-group.eu/v1/ShipmentProcessing",
"ShipmentProcessingBinding");
33 url =
new URL(
"file:soap-datatypes/src/main/resources/ShipmentProcessing.wsdl");
34 }
catch (MalformedURLException e) {
36 .log(java.util.logging.Level.INFO,
37 "Can not initialize the default wsdl from {0}",
"file:soap-datatypes/src/main/resources/ShipmentProcessing.wsdl");
43 super(wsdlLocation, SERVICE);
47 super(wsdlLocation, serviceName);
51 super(WSDL_LOCATION, SERVICE);
59 super(WSDL_LOCATION, SERVICE, features);
67 super(wsdlLocation, SERVICE, features);
75 super(wsdlLocation, serviceName, features);
83 @WebEndpoint(name =
"ShipmentProcessingBinding")
95 @WebEndpoint(name =
"ShipmentProcessingBinding")
ShipmentProcessingService()
static final URL WSDL_LOCATION
ShipmentProcessingService(URL wsdlLocation)
ShipmentProcessingService(URL wsdlLocation, WebServiceFeature... features)
ShipmentProcessingService(URL wsdlLocation, QName serviceName)
ShipmentProcessingService(WebServiceFeature... features)
ShipmentProcessingService(URL wsdlLocation, QName serviceName, WebServiceFeature... features)