001    package org.apache.camel.non_wrapper;
002    
003    import javax.jws.WebMethod;
004    import javax.jws.WebParam;
005    import javax.jws.WebResult;
006    import javax.jws.WebService;
007    import javax.jws.soap.SOAPBinding;
008    import javax.xml.bind.annotation.XmlSeeAlso;
009    
010    /**
011     * This class was generated by Progress FUSE Services Framework 2.2.11-fuse-00-00
012     * Wed Nov 24 04:37:40 UTC 2010
013     * Generated source version: 2.2.11-fuse-00-00
014     * 
015     */
016     
017    @WebService(targetNamespace = "http://camel.apache.org/non-wrapper", name = "Person")
018    @XmlSeeAlso({org.apache.camel.non_wrapper.types.ObjectFactory.class})
019    @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
020    public interface Person {
021    
022        @WebResult(name = "GetPersonResponse", targetNamespace = "http://camel.apache.org/non-wrapper/types", partName = "payload")
023        @WebMethod(operationName = "GetPerson")
024        public org.apache.camel.non_wrapper.types.GetPersonResponse getPerson(
025            @WebParam(partName = "payload", name = "GetPerson", targetNamespace = "http://camel.apache.org/non-wrapper/types")
026            org.apache.camel.non_wrapper.types.GetPerson payload
027        ) throws UnknownPersonFault;
028    }