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