package at.gv.util.wsdl.szr_v4; 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 * 2020-01-23T08:35:58.938+01:00 * Generated source version: 3.1.10 * */ @WebServiceClient(name = "SZRService", wsdlLocation = "file:./src/main/resources/wsdl/szr_v4/SZR_v4.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"); public final static QName SZRBusinesspartnerTestumgebung = new QName("urn:SZRServices", "SZRBusinesspartnerTestumgebung"); static { URL url = null; try { url = new URL("file:./src/main/resources/wsdl/szr_v4/SZR_v4.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_v4/SZR_v4.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); } /** * * @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); } }