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

org.apache.servicemix.examples.cxf.HelloWorld Maven / Gradle / Ivy

The newest version!
package org.apache.servicemix.examples.cxf;

import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.ws.RequestWrapper;
import javax.xml.ws.ResponseWrapper;

/**
 * This class was generated by Apache CXF 2.1.4
 * Mon Mar 23 23:09:06 CET 2009
 * Generated source version: 2.1.4
 * 
 */
 
@WebService(targetNamespace = "http://cxf.examples.servicemix.apache.org/", name = "HelloWorld")
@XmlSeeAlso({ObjectFactory.class})
public interface HelloWorld {

    @ResponseWrapper(localName = "sayHiResponse", targetNamespace = "http://cxf.examples.servicemix.apache.org/", className = "org.apache.servicemix.examples.cxf.SayHiResponse")
    @RequestWrapper(localName = "sayHi", targetNamespace = "http://cxf.examples.servicemix.apache.org/", className = "org.apache.servicemix.examples.cxf.SayHi")
    @WebResult(name = "return", targetNamespace = "")
    @WebMethod
    public java.lang.String sayHi(
        @WebParam(name = "arg0", targetNamespace = "")
        java.lang.String arg0
    );
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy