package at.gv.util.wsdl.szr; import java.net.MalformedURLException; import java.net.URL; import javax.xml.namespace.QName; import javax.xml.ws.WebEndpoint; import javax.xml.ws.WebServiceClient; import javax.xml.ws.WebServiceFeature; import javax.xml.ws.Service; /** * This class was generated by Apache CXF 3.1.10 * 2021-09-15T12:11:21.452+02:00 * Generated source version: 3.1.10 * */ @WebServiceClient(name = "SZRService", wsdlLocation = "file:./src/main/resources/wsdl/szr/SZR_v2.0.wsdl", targetNamespace = "urn:SZRServices") public class SZRService extends Service { public final static URL WSDL_LOCATION; public final static QName SERVICE = new QName("urn:SZRServices", "SZRService"); public final static QName SZRProduktionsumgebung = new QName("urn:SZRServices", "SZRProduktionsumgebung"); public final static QName SZRTestumgebung = new QName("urn:SZRServices", "SZRTestumgebung"); static { URL url = null; try { url = new URL("file:./src/main/resources/wsdl/szr/SZR_v2.0.wsdl"); } catch (MalformedURLException e) { java.util.logging.Logger.getLogger(SZRService.class.getName()) .log(java.util.logging.Level.INFO, "Can not initialize the default wsdl from {0}", "file:./src/main/resources/wsdl/szr/SZR_v2.0.wsdl"); } WSDL_LOCATION = url; } public SZRService(URL wsdlLocation) { super(wsdlLocation, SERVICE); } public SZRService(URL wsdlLocation, QName serviceName) { super(wsdlLocation, serviceName); } public SZRService() { super(WSDL_LOCATION, SERVICE); } public SZRService(WebServiceFeature ... features) { super(WSDL_LOCATION, SERVICE, features); } public SZRService(URL wsdlLocation, WebServiceFeature ... features) { super(wsdlLocation, SERVICE, features); } public SZRService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) { super(wsdlLocation, serviceName, features); } /** * * @return * returns SZR */ @WebEndpoint(name = "SZRProduktionsumgebung") public SZR getSZRProduktionsumgebung() { return super.getPort(SZRProduktionsumgebung, SZR.class); } /** * * @param features * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. * @return * returns SZR */ @WebEndpoint(name = "SZRProduktionsumgebung") public SZR getSZRProduktionsumgebung(WebServiceFeature... features) { return super.getPort(SZRProduktionsumgebung, SZR.class, features); } /** * * @return * returns SZR */ @WebEndpoint(name = "SZRTestumgebung") public SZR getSZRTestumgebung() { return super.getPort(SZRTestumgebung, SZR.class); } /** * * @param features * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. * @return * returns SZR */ @WebEndpoint(name = "SZRTestumgebung") public SZR getSZRTestumgebung(WebServiceFeature... features) { return super.getPort(SZRTestumgebung, SZR.class, features); } }