org.apache.camel.non_wrapper.Person Maven / Gradle / Ivy
package org.apache.camel.non_wrapper;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebParam.Mode;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import javax.jws.soap.SOAPBinding.ParameterStyle;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.ws.RequestWrapper;
import javax.xml.ws.ResponseWrapper;
/**
* This class was generated by Apache CXF 2.2
* Thu May 14 08:14:43 EDT 2009
* Generated source version: 2.2
*
*/
@WebService(targetNamespace = "http://camel.apache.org/non-wrapper", name = "Person")
@XmlSeeAlso({org.apache.camel.non_wrapper.types.ObjectFactory.class})
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
public interface Person {
@WebResult(name = "GetPersonResponse", targetNamespace = "http://camel.apache.org/non-wrapper/types", partName = "payload")
@WebMethod(operationName = "GetPerson")
public org.apache.camel.non_wrapper.types.GetPersonResponse getPerson(
@WebParam(partName = "payload", name = "GetPerson", targetNamespace = "http://camel.apache.org/non-wrapper/types")
org.apache.camel.non_wrapper.types.GetPerson payload
) throws UnknownPersonFault;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy