All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.gematik.ws.conn.vsds.vsdservice.v5.VSDService Maven / Gradle / Ivy

The newest version!

package de.gematik.ws.conn.vsds.vsdservice.v5;

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.0
 * Generated source version: 3.0
 * 
 */
@WebServiceClient(name = "VSDService", targetNamespace = "http://ws.gematik.de/conn/vsds/VSDService/v5.2", wsdlLocation = "file:/home/jenkins/agent/workspace/Testtools-Bricks-MavenCentralPublish/perimeter-bricks/konnektor-ws-api-brick/src/main/resources/gematik_schemes/conn/vsds/VSDService.wsdl")
public class VSDService
    extends Service
{

    private final static URL VSDSERVICE_WSDL_LOCATION;
    private final static WebServiceException VSDSERVICE_EXCEPTION;
    private final static QName VSDSERVICE_QNAME = new QName("http://ws.gematik.de/conn/vsds/VSDService/v5.2", "VSDService");

    static {
        URL url = null;
        WebServiceException e = null;
        try {
            url = new URL("file:/home/jenkins/agent/workspace/Testtools-Bricks-MavenCentralPublish/perimeter-bricks/konnektor-ws-api-brick/src/main/resources/gematik_schemes/conn/vsds/VSDService.wsdl");
        } catch (MalformedURLException ex) {
            e = new WebServiceException(ex);
        }
        VSDSERVICE_WSDL_LOCATION = url;
        VSDSERVICE_EXCEPTION = e;
    }

    public VSDService() {
        super(__getWsdlLocation(), VSDSERVICE_QNAME);
    }

    public VSDService(WebServiceFeature... features) {
        super(__getWsdlLocation(), VSDSERVICE_QNAME, features);
    }

    public VSDService(URL wsdlLocation) {
        super(wsdlLocation, VSDSERVICE_QNAME);
    }

    public VSDService(URL wsdlLocation, WebServiceFeature... features) {
        super(wsdlLocation, VSDSERVICE_QNAME, features);
    }

    public VSDService(URL wsdlLocation, QName serviceName) {
        super(wsdlLocation, serviceName);
    }

    public VSDService(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
        super(wsdlLocation, serviceName, features);
    }

    /**
     * 
     * @return
     *     returns VSDServicePortType
     */
    @WebEndpoint(name = "VSDServicePort")
    public VSDServicePortType getVSDServicePort() {
        return super.getPort(new QName("http://ws.gematik.de/conn/vsds/VSDService/v5.2", "VSDServicePort"), VSDServicePortType.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 VSDServicePortType
     */
    @WebEndpoint(name = "VSDServicePort")
    public VSDServicePortType getVSDServicePort(WebServiceFeature... features) {
        return super.getPort(new QName("http://ws.gematik.de/conn/vsds/VSDService/v5.2", "VSDServicePort"), VSDServicePortType.class, features);
    }

    private static URL __getWsdlLocation() {
        if (VSDSERVICE_EXCEPTION!= null) {
            throw VSDSERVICE_EXCEPTION;
        }
        return VSDSERVICE_WSDL_LOCATION;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy