package at.gv.util.wsdl.szrgw; 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:47.331+01:00 * Generated source version: 3.0.1 * */ @WebServiceClient(name = "SZRGWService", wsdlLocation = "./src/main/resources/wsdl/szrgw/szrgw.wsdl", targetNamespace = "http://reference.e-government.gv.at/namespace/szrgw/20070807/wsdl") public class SZRGWService extends Service { public final static URL WSDL_LOCATION; public final static QName SERVICE = new QName("http://reference.e-government.gv.at/namespace/szrgw/20070807/wsdl", "SZRGWService"); public final static QName SZRGWPort = new QName("http://reference.e-government.gv.at/namespace/szrgw/20070807/wsdl", "SZRGWPort"); static { URL url = SZRGWService.class.getResource("./src/main/resources/wsdl/szrgw/szrgw.wsdl"); if (url == null) { url = SZRGWService.class.getClassLoader().getResource("./src/main/resources/wsdl/szrgw/szrgw.wsdl"); } if (url == null) { java.util.logging.Logger.getLogger(SZRGWService.class.getName()) .log(java.util.logging.Level.INFO, "Can not initialize the default wsdl from {0}", "./src/main/resources/wsdl/szrgw/szrgw.wsdl"); } WSDL_LOCATION = url; } public SZRGWService(URL wsdlLocation) { super(wsdlLocation, SERVICE); } public SZRGWService(URL wsdlLocation, QName serviceName) { super(wsdlLocation, serviceName); } public SZRGWService() { 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 SZRGWService(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 SZRGWService(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 SZRGWService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) { super(wsdlLocation, serviceName, features); } /** * * @return * returns SZRGWType */ @WebEndpoint(name = "SZRGWPort") public SZRGWType getSZRGWPort() { return super.getPort(SZRGWPort, SZRGWType.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 SZRGWType */ @WebEndpoint(name = "SZRGWPort") public SZRGWType getSZRGWPort(WebServiceFeature... features) { return super.getPort(SZRGWPort, SZRGWType.class, features); } }