org.apache.servicemix.samples.wsdl_first.Person Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of servicemix-cxf-bc Show documentation
Show all versions of servicemix-cxf-bc Show documentation
JBI compliant HTTP/SOAP or JMS/SOAP binding component which use Apache CXF internally
package org.apache.servicemix.samples.wsdl_first;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebParam.Mode;
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.2
* Wed Oct 15 12:08:38 CEST 2008
* Generated source version: 2.1.2
*
*/
@WebService(targetNamespace = "http://servicemix.apache.org/samples/wsdl-first", name = "Person")
@XmlSeeAlso({org.apache.servicemix.samples.wsdl_first.types.ObjectFactory.class})
public interface Person {
@ResponseWrapper(localName = "GetPersonResponse", targetNamespace = "http://servicemix.apache.org/samples/wsdl-first/types", className = "org.apache.servicemix.samples.wsdl_first.types.GetPersonResponse")
@RequestWrapper(localName = "GetPerson", targetNamespace = "http://servicemix.apache.org/samples/wsdl-first/types", className = "org.apache.servicemix.samples.wsdl_first.types.GetPerson")
@WebMethod(operationName = "GetPerson")
public void getPerson(
@WebParam(mode = WebParam.Mode.INOUT, name = "personId", targetNamespace = "")
javax.xml.ws.Holder personId,
@WebParam(mode = WebParam.Mode.OUT, name = "ssn", targetNamespace = "")
javax.xml.ws.Holder ssn,
@WebParam(mode = WebParam.Mode.OUT, name = "name", targetNamespace = "")
javax.xml.ws.Holder name
) throws UnknownPersonFault;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy