All Downloads are FREE. Search and download functionalities are using the official Maven repository.

test.java.uri.helloworld.HelloService Maven / Gradle / Ivy

Go to download

JBI compliant HTTP/SOAP or JMS/SOAP binding component which use Apache CXF internally

The newest version!
package uri.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.6.4
 * 2013-01-15T22:06:47.987+01:00
 * Generated source version: 2.6.4
 * 
 */
@WebServiceClient(name = "HelloService", 
                  wsdlLocation = "file:/Users/gert/Projects/ASF/svn/components/target/checkout/bindings/servicemix-cxf-bc/src/test/resources/HelloWorld-DOC.wsdl",
                  targetNamespace = "uri:HelloWorld") 
public class HelloService extends Service {

    public final static URL WSDL_LOCATION;

    public final static QName SERVICE = new QName("uri:HelloWorld", "HelloService");
    public final static QName HelloPort = new QName("uri:HelloWorld", "HelloPort");
    static {
        URL url = null;
        try {
            url = new URL("file:/Users/gert/Projects/ASF/svn/components/target/checkout/bindings/servicemix-cxf-bc/src/test/resources/HelloWorld-DOC.wsdl");
        } catch (MalformedURLException e) {
            java.util.logging.Logger.getLogger(HelloService.class.getName())
                .log(java.util.logging.Level.INFO, 
                     "Can not initialize the default wsdl from {0}", "file:/Users/gert/Projects/ASF/svn/components/target/checkout/bindings/servicemix-cxf-bc/src/test/resources/HelloWorld-DOC.wsdl");
        }
        WSDL_LOCATION = url;
    }

    public HelloService(URL wsdlLocation) {
        super(wsdlLocation, SERVICE);
    }

    public HelloService(URL wsdlLocation, QName serviceName) {
        super(wsdlLocation, serviceName);
    }

    public HelloService() {
        super(WSDL_LOCATION, SERVICE);
    }
    

    /**
     *
     * @return
     *     returns HelloPortType
     */
    @WebEndpoint(name = "HelloPort")
    public HelloPortType getHelloPort() {
        return super.getPort(HelloPort, HelloPortType.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 HelloPortType
     */
    @WebEndpoint(name = "HelloPort")
    public HelloPortType getHelloPort(WebServiceFeature... features) {
        return super.getPort(HelloPort, HelloPortType.class, features);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy