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

org.apache.camel.wsdl_first.Person Maven / Gradle / Ivy

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

import javax.annotation.Generated;
import javax.jws.WebMethod;
import javax.jws.WebParam;
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.5.6
 * 2012-10-10T18:37:05.258-04:00
 * Generated source version: 2.5.6
 * 
 */
@WebService(targetNamespace = "http://camel.apache.org/wsdl-first", name = "Person")
@XmlSeeAlso({org.apache.camel.wsdl_first.types.ObjectFactory.class})
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2012-10-10T18:37:05.258-04:00", comments = "Apache CXF 2.5.6")
public interface Person {

    @RequestWrapper(localName = "GetPerson", targetNamespace = "http://camel.apache.org/wsdl-first/types", className = "org.apache.camel.wsdl_first.types.GetPerson")
    @WebMethod(operationName = "GetPerson")
    @ResponseWrapper(localName = "GetPersonResponse", targetNamespace = "http://camel.apache.org/wsdl-first/types", className = "org.apache.camel.wsdl_first.types.GetPersonResponse")
    @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2012-10-10T18:37:05.258-04:00")
    public void getPerson(
        @WebParam(mode = WebParam.Mode.INOUT, name = "personId", targetNamespace = "http://camel.apache.org/wsdl-first/types")
        javax.xml.ws.Holder personId,
        @WebParam(mode = WebParam.Mode.OUT, name = "ssn", targetNamespace = "http://camel.apache.org/wsdl-first/types")
        javax.xml.ws.Holder ssn,
        @WebParam(mode = WebParam.Mode.OUT, name = "name", targetNamespace = "http://camel.apache.org/wsdl-first/types")
        javax.xml.ws.Holder name
    ) throws UnknownPersonFault;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy