package com.bahadirakin.helloworld; 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 2.7.7 * 2013-10-26T21:47:31.567+03:00 * Generated source version: 2.7.7 * */ @WebServiceClient(name = "HelloWorldServiceService", wsdlLocation = "file:/D:/Workspaces/workspace-kepler/Java-Examples/camel-soap/src/main/resources/wsdl/HelloWorldService.wsdl", targetNamespace = "http://helloworld.bahadirakin.com/") public class HelloWorldServiceService extends Service { public final static URL WSDL_LOCATION; public final static QName SERVICE = new QName("http://helloworld.bahadirakin.com/", "HelloWorldServiceService"); public final static QName HelloWorldServicePort = new QName("http://helloworld.bahadirakin.com/", "HelloWorldServicePort"); static { URL url = null; try { url = new URL("file:/D:/Workspaces/workspace-kepler/Java-Examples/camel-soap/src/main/resources/wsdl/HelloWorldService.wsdl"); } catch (MalformedURLException e) { java.util.logging.Logger.getLogger(HelloWorldServiceService.class.getName()) .log(java.util.logging.Level.INFO, "Can not initialize the default wsdl from {0}", "file:/D:/Workspaces/workspace-kepler/Java-Examples/camel-soap/src/main/resources/wsdl/HelloWorldService.wsdl"); } WSDL_LOCATION = url; } public HelloWorldServiceService(URL wsdlLocation) { super(wsdlLocation, SERVICE); } public HelloWorldServiceService(URL wsdlLocation, QName serviceName) { super(wsdlLocation, serviceName); } public HelloWorldServiceService() { super(WSDL_LOCATION, SERVICE); } /** * * @return * returns HelloWorldService */ @WebEndpoint(name = "HelloWorldServicePort") public HelloWorldService getHelloWorldServicePort() { return super.getPort(HelloWorldServicePort, HelloWorldService.class); } /** * * @param features * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values. * @return * returns HelloWorldService */ @WebEndpoint(name = "HelloWorldServicePort") public HelloWorldService getHelloWorldServicePort(WebServiceFeature... features) { return super.getPort(HelloWorldServicePort, HelloWorldService.class, features); } }