1 package eu.gls_group.fpcs.v1.timeframe;
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 =
"TimeframeService",
20 wsdlLocation =
"file:soap-datatypes/src/main/resources/Timeframe.wsdl",
21 targetNamespace =
"http://fpcs.gls-group.eu/v1/Timeframe")
26 public final static QName SERVICE =
new QName(
"http://fpcs.gls-group.eu/v1/Timeframe",
"TimeframeService");
27 public final static QName TimeframePort =
new QName(
"http://fpcs.gls-group.eu/v1/Timeframe",
"TimeframePort");
31 url =
new URL(
"file:soap-datatypes/src/main/resources/Timeframe.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/Timeframe.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 TimeframeService(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
73 super(wsdlLocation, serviceName, features);
81 @WebEndpoint(name =
"TimeframePort")
93 @WebEndpoint(name =
"TimeframePort")
TimeframeService(URL wsdlLocation, QName serviceName)
TimeframeService(URL wsdlLocation, QName serviceName, WebServiceFeature... features)
TimeframeService(URL wsdlLocation)
static final URL WSDL_LOCATION
TimeframeService(URL wsdlLocation, WebServiceFeature... features)
TimeframeService(WebServiceFeature... features)