Package org.apache.cxf.tools.java2wsdl.processor.internal.jaxws

Examples of org.apache.cxf.tools.java2wsdl.processor.internal.jaxws.RequestWrapper


        Collection<JavaClass> wrapperClasses = new HashSet<JavaClass>();
       
        for (OperationInfo op : serviceInfo.getInterface().getOperations()) {
            if (op.getUnwrappedOperation() != null) {
                if (op.hasInput()) {
                    RequestWrapper requestWrapper = new RequestWrapper();
                    requestWrapper.setOperationInfo(op);
                    JavaClass jClass = requestWrapper.buildWrapperBeanClass();

                    if (requestWrapper.isWrapperBeanClassNotExist()) {
                        wrapperClasses.add(jClass);
                    }
                }
                if (op.hasOutput()) {
                    ResponseWrapper responseWrapper = new ResponseWrapper();
View Full Code Here

TOP

Related Classes of org.apache.cxf.tools.java2wsdl.processor.internal.jaxws.RequestWrapper

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.