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

org.apache.camel.cxf.multipart.MultiPartInvokeService Maven / Gradle / Ivy

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

import java.net.MalformedURLException;
import java.net.URL;
import javax.annotation.Generated;
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.8
 * 2013-07-03T09:36:50.627+02:00
 * Generated source version: 2.6.8
 * 
 */
@WebServiceClient(name = "MultiPartInvokeService", 
                  wsdlLocation = "file:/Users/cmueller/workspaceRelease/camel/components/camel-cxf/src/test/resources/MultiPartTest.wsdl",
                  targetNamespace = "http://camel.apache.org/cxf/multipart") 
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2013-07-03T09:36:50.627+02:00", comments = "Apache CXF 2.6.8")
public class MultiPartInvokeService extends Service {

    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2013-07-03T09:36:50.627+02:00")
    public final static URL WSDL_LOCATION;

    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2013-07-03T09:36:50.627+02:00")
    public final static QName SERVICE = new QName("http://camel.apache.org/cxf/multipart", "MultiPartInvokeService");
    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2013-07-03T09:36:50.627+02:00")
    public final static QName MultiPartInvokePort = new QName("http://camel.apache.org/cxf/multipart", "MultiPartInvokePort");
    static {
        URL url = null;
        try {
            url = new URL("file:/Users/cmueller/workspaceRelease/camel/components/camel-cxf/src/test/resources/MultiPartTest.wsdl");
        } catch (MalformedURLException e) {
            java.util.logging.Logger.getLogger(MultiPartInvokeService.class.getName())
                .log(java.util.logging.Level.INFO, 
                     "Can not initialize the default wsdl from {0}", "file:/Users/cmueller/workspaceRelease/camel/components/camel-cxf/src/test/resources/MultiPartTest.wsdl");
        }
        WSDL_LOCATION = url;
    }

    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2013-07-03T09:36:50.627+02:00")
    public MultiPartInvokeService(URL wsdlLocation) {
        super(wsdlLocation, SERVICE);
    }

    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2013-07-03T09:36:50.627+02:00")
    public MultiPartInvokeService(URL wsdlLocation, QName serviceName) {
        super(wsdlLocation, serviceName);
    }

    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2013-07-03T09:36:50.627+02:00")
    public MultiPartInvokeService() {
        super(WSDL_LOCATION, SERVICE);
    }
    

    /**
     *
     * @return
     *     returns MultiPartInvoke
     */
    @WebEndpoint(name = "MultiPartInvokePort")
    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2013-07-03T09:36:50.627+02:00")
    public MultiPartInvoke getMultiPartInvokePort() {
        return super.getPort(MultiPartInvokePort, MultiPartInvoke.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 MultiPartInvoke
     */
    @WebEndpoint(name = "MultiPartInvokePort")
    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2013-07-03T09:36:50.627+02:00")
    public MultiPartInvoke getMultiPartInvokePort(WebServiceFeature... features) {
        return super.getPort(MultiPartInvokePort, MultiPartInvoke.class, features);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy