package org.wildfly.swarm.webservices; import java.net.MalformedURLException; 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.WebServiceException; import javax.xml.ws.WebServiceFeature; /** * This class was generated by the JAX-WS RI. * JAX-WS RI 2.2.9-b130926.1035 * Generated source version: 2.2 */ @WebServiceClient(name = "echoService", targetNamespace = "webservices.swarm.wildfly.org", wsdlLocation = "http://localhost:8080/ws/echo?wsdl") public class EchoServiceClient extends Service { private static final URL ECHOSERVICE_WSDL_LOCATION; private static final WebServiceException ECHOSERVICE_EXCEPTION; private static final QName ECHOSERVICE_QNAME = new QName("webservices.swarm.wildfly.org", "echoService"); static { URL url = null; WebServiceException e = null; try { url = new URL("http://localhost:8080/ws/echo?wsdl"); } catch (MalformedURLException ex) { e = new WebServiceException(ex); } ECHOSERVICE_WSDL_LOCATION = url; ECHOSERVICE_EXCEPTION = e; } public EchoServiceClient() { super(__getWsdlLocation(), ECHOSERVICE_QNAME); } public EchoServiceClient(WebServiceFeature... features) { super(__getWsdlLocation(), ECHOSERVICE_QNAME, features); } public EchoServiceClient(URL wsdlLocation) { super(wsdlLocation, ECHOSERVICE_QNAME); } public EchoServiceClient(URL wsdlLocation, WebServiceFeature... features) { super(wsdlLocation, ECHOSERVICE_QNAME, features); } public EchoServiceClient(URL wsdlLocation, QName serviceName) { super(wsdlLocation, serviceName); } public EchoServiceClient(URL wsdlLocation, QName serviceName, WebServiceFeature... features) { super(wsdlLocation, serviceName, features); } /** * @return returns EchoService */ @WebEndpoint(name = "echoPort") public EchoService getEchoPort() { return super.getPort(new QName("webservices.swarm.wildfly.org", "echoPort"), EchoService.class); } /** * @param features A list of {@link WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values. * @return returns EchoService */ @WebEndpoint(name = "echoPort") public EchoService getEchoPort(WebServiceFeature... features) { return super.getPort(new QName("webservices.swarm.wildfly.org", "echoPort"), EchoService.class, features); } private static URL __getWsdlLocation() { if (ECHOSERVICE_EXCEPTION != null) { throw ECHOSERVICE_EXCEPTION; } return ECHOSERVICE_WSDL_LOCATION; } }