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

org.ow2.petals.bc.soap.simple.SimpleWithImport Maven / Gradle / Ivy

The newest version!
package org.ow2.petals.bc.soap.simple;

import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import javax.xml.bind.annotation.XmlSeeAlso;

/**
 * This class was generated by Apache CXF 3.4.2
 * 2023-04-11T14:21:06.964+02:00
 * Generated source version: 3.4.2
 *
 */
@WebService(targetNamespace = "http://petals.ow2.org/bc/soap/simple", name = "SimpleWithImport")
@XmlSeeAlso({org.ow2.petals.bc.soap.simple_with_import.xsd.ObjectFactory.class})
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
public interface SimpleWithImport {

    @WebMethod(action = "echo")
    @WebResult(name = "echoResponse", targetNamespace = "http://petals.ow2.org/bc/soap/simple-with-import/xsd", partName = "echoReturn")
    public org.ow2.petals.bc.soap.simple_with_import.xsd.EchoResponse echo(

        @WebParam(partName = "param0", name = "echoRequest", targetNamespace = "http://petals.ow2.org/bc/soap/simple-with-import/xsd")
        org.ow2.petals.bc.soap.simple_with_import.xsd.EchoRequest param0
    );
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy