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

de.gematik.ws.conn.certificateservice.wsdl.v6.CertificateService Maven / Gradle / Ivy

The newest version!

package de.gematik.ws.conn.certificateservice.wsdl.v6;

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

    private final static URL CERTIFICATESERVICE_WSDL_LOCATION;
    private final static WebServiceException CERTIFICATESERVICE_EXCEPTION;
    private final static QName CERTIFICATESERVICE_QNAME = new QName("http://ws.gematik.de/conn/CertificateService/WSDL/v6.0", "CertificateService");

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

    public CertificateService() {
        super(__getWsdlLocation(), CERTIFICATESERVICE_QNAME);
    }

    public CertificateService(WebServiceFeature... features) {
        super(__getWsdlLocation(), CERTIFICATESERVICE_QNAME, features);
    }

    public CertificateService(URL wsdlLocation) {
        super(wsdlLocation, CERTIFICATESERVICE_QNAME);
    }

    public CertificateService(URL wsdlLocation, WebServiceFeature... features) {
        super(wsdlLocation, CERTIFICATESERVICE_QNAME, features);
    }

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

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

    /**
     * 
     * @return
     *     returns CertificateServicePortType
     */
    @WebEndpoint(name = "CertificateServicePort")
    public CertificateServicePortType getCertificateServicePort() {
        return super.getPort(new QName("http://ws.gematik.de/conn/CertificateService/WSDL/v6.0", "CertificateServicePort"), CertificateServicePortType.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 CertificateServicePortType
     */
    @WebEndpoint(name = "CertificateServicePort")
    public CertificateServicePortType getCertificateServicePort(WebServiceFeature... features) {
        return super.getPort(new QName("http://ws.gematik.de/conn/CertificateService/WSDL/v6.0", "CertificateServicePort"), CertificateServicePortType.class, features);
    }

    private static URL __getWsdlLocation() {
        if (CERTIFICATESERVICE_EXCEPTION!= null) {
            throw CERTIFICATESERVICE_EXCEPTION;
        }
        return CERTIFICATESERVICE_WSDL_LOCATION;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy