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

de.gematik.ws.conn.signatureservice.wsdl.v7.SignatureService Maven / Gradle / Ivy


package de.gematik.ws.conn.signatureservice.wsdl.v7;

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 = "SignatureService", targetNamespace = "http://ws.gematik.de/conn/SignatureService/WSDL/v7.5", wsdlLocation = "file:/home/jenkins/agent/workspace/Testtools-Bricks-MavenCentralPublish/perimeter-bricks/konnektor-ws-api-brick/src/main/resources/gematik_schemes/conn/SignatureService_V7_5_5.wsdl")
public class SignatureService
    extends Service
{

    private final static URL SIGNATURESERVICE_WSDL_LOCATION;
    private final static WebServiceException SIGNATURESERVICE_EXCEPTION;
    private final static QName SIGNATURESERVICE_QNAME = new QName("http://ws.gematik.de/conn/SignatureService/WSDL/v7.5", "SignatureService");

    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/SignatureService_V7_5_5.wsdl");
        } catch (MalformedURLException ex) {
            e = new WebServiceException(ex);
        }
        SIGNATURESERVICE_WSDL_LOCATION = url;
        SIGNATURESERVICE_EXCEPTION = e;
    }

    public SignatureService() {
        super(__getWsdlLocation(), SIGNATURESERVICE_QNAME);
    }

    public SignatureService(WebServiceFeature... features) {
        super(__getWsdlLocation(), SIGNATURESERVICE_QNAME, features);
    }

    public SignatureService(URL wsdlLocation) {
        super(wsdlLocation, SIGNATURESERVICE_QNAME);
    }

    public SignatureService(URL wsdlLocation, WebServiceFeature... features) {
        super(wsdlLocation, SIGNATURESERVICE_QNAME, features);
    }

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

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

    /**
     * 
     * @return
     *     returns SignatureServicePortType
     */
    @WebEndpoint(name = "SignatureServicePort")
    public SignatureServicePortType getSignatureServicePort() {
        return super.getPort(new QName("http://ws.gematik.de/conn/SignatureService/WSDL/v7.5", "SignatureServicePort"), SignatureServicePortType.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 SignatureServicePortType
     */
    @WebEndpoint(name = "SignatureServicePort")
    public SignatureServicePortType getSignatureServicePort(WebServiceFeature... features) {
        return super.getPort(new QName("http://ws.gematik.de/conn/SignatureService/WSDL/v7.5", "SignatureServicePort"), SignatureServicePortType.class, features);
    }

    private static URL __getWsdlLocation() {
        if (SIGNATURESERVICE_EXCEPTION!= null) {
            throw SIGNATURESERVICE_EXCEPTION;
        }
        return SIGNATURESERVICE_WSDL_LOCATION;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy