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

org.apache.camel.cxf.mtom_feature.HelloService Maven / Gradle / Ivy

There is a newer version: 3.17.0
Show newest version
package org.apache.camel.cxf.mtom_feature;

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.4.3
 * 2011-10-18T21:48:37.604-04:00
 * Generated source version: 2.4.3
 * 
 */
@WebServiceClient(name = "HelloService", 
                  wsdlLocation = "file:/home/dkulp/working/camel-2.8.x/target/checkout/components/camel-cxf/src/test/resources/mtom.wsdl",
                  targetNamespace = "http://apache.org/camel/cxf/mtom_feature") 
public class HelloService extends Service {

    public final static URL WSDL_LOCATION;

    public final static QName SERVICE = new QName("http://apache.org/camel/cxf/mtom_feature", "HelloService");
    public final static QName HelloPort = new QName("http://apache.org/camel/cxf/mtom_feature", "HelloPort");
    static {
        URL url = null;
        try {
            url = new URL("file:/home/dkulp/working/camel-2.8.x/target/checkout/components/camel-cxf/src/test/resources/mtom.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:/home/dkulp/working/camel-2.8.x/target/checkout/components/camel-cxf/src/test/resources/mtom.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 Hello
     */
    @WebEndpoint(name = "HelloPort")
    public Hello getHelloPort() {
        return super.getPort(HelloPort, Hello.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 Hello
     */
    @WebEndpoint(name = "HelloPort")
    public Hello getHelloPort(WebServiceFeature... features) {
        return super.getPort(HelloPort, Hello.class, features);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy