ebx.ebx_dataservices.EbxDataservicesService Maven / Gradle / Ivy
package ebx.ebx_dataservices;
import java.net.MalformedURLException;
import java.net.URL;
import javax.xml.namespace.QName;
import jakarta.xml.ws.Service;
import jakarta.xml.ws.WebEndpoint;
import jakarta.xml.ws.WebServiceClient;
import jakarta.xml.ws.WebServiceException;
import jakarta.xml.ws.WebServiceFeature;
/**
* This class was generated by the JAX-WS RI.
* JAX-WS RI 3.0.2
* Generated source version: 3.0
*
*/
@WebServiceClient(name = "ebx-dataservicesService", targetNamespace = "urn:ebx:ebx-dataservices", wsdlLocation = "https://rof.api.dauphine.fr/ebx-dataservices/tables/pvRefRof/RefRof?WSDL")
public class EbxDataservicesService
extends Service
{
private final static URL EBXDATASERVICESSERVICE_WSDL_LOCATION;
private final static WebServiceException EBXDATASERVICESSERVICE_EXCEPTION;
private final static QName EBXDATASERVICESSERVICE_QNAME = new QName("urn:ebx:ebx-dataservices", "ebx-dataservicesService");
static {
URL url = null;
WebServiceException e = null;
try {
url = new URL("https://rof.api.dauphine.fr/ebx-dataservices/tables/pvRefRof/RefRof?WSDL");
} catch (MalformedURLException ex) {
e = new WebServiceException(ex);
}
EBXDATASERVICESSERVICE_WSDL_LOCATION = url;
EBXDATASERVICESSERVICE_EXCEPTION = e;
}
public EbxDataservicesService() {
super(__getWsdlLocation(), EBXDATASERVICESSERVICE_QNAME);
}
public EbxDataservicesService(WebServiceFeature... features) {
super(__getWsdlLocation(), EBXDATASERVICESSERVICE_QNAME, features);
}
public EbxDataservicesService(URL wsdlLocation) {
super(wsdlLocation, EBXDATASERVICESSERVICE_QNAME);
}
public EbxDataservicesService(URL wsdlLocation, WebServiceFeature... features) {
super(wsdlLocation, EBXDATASERVICESSERVICE_QNAME, features);
}
public EbxDataservicesService(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
public EbxDataservicesService(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
super(wsdlLocation, serviceName, features);
}
/**
*
* @return
* returns EbxDataservices
*/
@WebEndpoint(name = "ebx-dataservices")
public EbxDataservices getEbxDataservices() {
return super.getPort(new QName("urn:ebx:ebx-dataservices", "ebx-dataservices"), EbxDataservices.class);
}
/**
*
* @param features
* A list of {@link jakarta.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the features
parameter will have their default values.
* @return
* returns EbxDataservices
*/
@WebEndpoint(name = "ebx-dataservices")
public EbxDataservices getEbxDataservices(WebServiceFeature... features) {
return super.getPort(new QName("urn:ebx:ebx-dataservices", "ebx-dataservices"), EbxDataservices.class, features);
}
private static URL __getWsdlLocation() {
if (EBXDATASERVICESSERVICE_EXCEPTION!= null) {
throw EBXDATASERVICESSERVICE_EXCEPTION;
}
return EBXDATASERVICESSERVICE_WSDL_LOCATION;
}
}