package at.gv.util.wsdl.szr; 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.0.1 * 2014-10-28T17:23:34.052+01:00 * Generated source version: 3.0.1 * */ @WebServiceClient(name = "SZRService", wsdlLocation = "./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 SZRTestumgebung = new QName("urn:SZRServices", "SZRTestumgebung"); public final static QName SZRProduktionsumgebung = new QName("urn:SZRServices", "SZRProduktionsumgebung"); static { URL url = SZRService.class.getResource("./src/main/resources/wsdl/szr/SZR_v2.0.wsdl"); if (url == null) { url = SZRService.class.getClassLoader().getResource("./src/main/resources/wsdl/szr/SZR_v2.0.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}", "./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); } //This constructor requires JAX-WS API 2.2. You will need to endorse the 2.2 //API jar or re-run wsdl2java with "-frontend jaxws21" to generate JAX-WS 2.1 //compliant code instead. public SZRService(WebServiceFeature ... features) { super(WSDL_LOCATION, SERVICE, features); } //This constructor requires JAX-WS API 2.2. You will need to endorse the 2.2 //API jar or re-run wsdl2java with "-frontend jaxws21" to generate JAX-WS 2.1 //compliant code instead. public SZRService(URL wsdlLocation, WebServiceFeature ... features) { super(wsdlLocation, SERVICE, features); } //This constructor requires JAX-WS API 2.2. You will need to endorse the 2.2 //API jar or re-run wsdl2java with "-frontend jaxws21" to generate JAX-WS 2.1 //compliant code instead. public SZRService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) { super(wsdlLocation, serviceName, 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 = "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); } }