package at.asitplus.eidas.specific.modules.authmodule_eIDASv2.szr; import java.net.URL; import javax.xml.namespace.QName; import javax.xml.ws.Service; import javax.xml.ws.WebEndpoint; import javax.xml.ws.WebServiceClient; import javax.xml.ws.WebServiceFeature; import szrservices.SZR; /** * This class was generated by Apache CXF 3.1.16 * 2018-07-10T09:36:01.466+02:00 * Generated source version: 3.1.16 * */ @WebServiceClient(name = "SZRService", wsdlLocation = "./src/main/resources/szr_client/SZR-1.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"); public final static QName SZRBusinesspartnerTestumgebung = new QName("urn:SZRServices", "SZRBusinesspartnerTestumgebung"); static { URL url = SZRService.class.getResource("./src/main/resources/szr_client/SZR-1.WSDL"); if (url == null) { url = SZRService.class.getClassLoader().getResource("/szr_client/SZR-1.WSDL"); } if (url == null) { java.util.logging.Logger.getLogger(SZRService.class.getName()) .log(java.util.logging.Level.INFO, "Can not initialize the default wsdl from {0}", "/szr_client/SZR-1.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); } /** * * @return * returns SZR */ @WebEndpoint(name = "SZRBusinesspartnerTestumgebung") public SZR getSZRBusinesspartnerTestumgebung() { return super.getPort(SZRBusinesspartnerTestumgebung, 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 = "SZRBusinesspartnerTestumgebung") public SZR getSZRBusinesspartnerTestumgebung(WebServiceFeature... features) { return super.getPort(SZRBusinesspartnerTestumgebung, SZR.class, features); } }