de.gematik.ws.conn.encryptionservice.wsdl.v6.EncryptionService Maven / Gradle / Ivy
The newest version!
package de.gematik.ws.conn.encryptionservice.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 = "EncryptionService", targetNamespace = "http://ws.gematik.de/conn/EncryptionService/WSDL/v6.1", wsdlLocation = "file:/home/jenkins/agent/workspace/Testtools-Bricks-MavenCentralPublish/perimeter-bricks/konnektor-ws-api-brick/src/main/resources/gematik_schemes/conn/EncryptionService_v6_1_1.wsdl")
public class EncryptionService
extends Service
{
private final static URL ENCRYPTIONSERVICE_WSDL_LOCATION;
private final static WebServiceException ENCRYPTIONSERVICE_EXCEPTION;
private final static QName ENCRYPTIONSERVICE_QNAME = new QName("http://ws.gematik.de/conn/EncryptionService/WSDL/v6.1", "EncryptionService");
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/EncryptionService_v6_1_1.wsdl");
} catch (MalformedURLException ex) {
e = new WebServiceException(ex);
}
ENCRYPTIONSERVICE_WSDL_LOCATION = url;
ENCRYPTIONSERVICE_EXCEPTION = e;
}
public EncryptionService() {
super(__getWsdlLocation(), ENCRYPTIONSERVICE_QNAME);
}
public EncryptionService(WebServiceFeature... features) {
super(__getWsdlLocation(), ENCRYPTIONSERVICE_QNAME, features);
}
public EncryptionService(URL wsdlLocation) {
super(wsdlLocation, ENCRYPTIONSERVICE_QNAME);
}
public EncryptionService(URL wsdlLocation, WebServiceFeature... features) {
super(wsdlLocation, ENCRYPTIONSERVICE_QNAME, features);
}
public EncryptionService(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
public EncryptionService(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
super(wsdlLocation, serviceName, features);
}
/**
*
* @return
* returns EncryptionServicePortType
*/
@WebEndpoint(name = "EncryptionServicePort")
public EncryptionServicePortType getEncryptionServicePort() {
return super.getPort(new QName("http://ws.gematik.de/conn/EncryptionService/WSDL/v6.1", "EncryptionServicePort"), EncryptionServicePortType.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 EncryptionServicePortType
*/
@WebEndpoint(name = "EncryptionServicePort")
public EncryptionServicePortType getEncryptionServicePort(WebServiceFeature... features) {
return super.getPort(new QName("http://ws.gematik.de/conn/EncryptionService/WSDL/v6.1", "EncryptionServicePort"), EncryptionServicePortType.class, features);
}
private static URL __getWsdlLocation() {
if (ENCRYPTIONSERVICE_EXCEPTION!= null) {
throw ENCRYPTIONSERVICE_EXCEPTION;
}
return ENCRYPTIONSERVICE_WSDL_LOCATION;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy