Package rocket.remoting.rebind.rpc.json.requestparameters

Examples of rocket.remoting.rebind.rpc.json.requestparameters.RequestParametersInvokerTemplatedFile


    }

    final NewMethod asyncMethod = this.createCorrespondingAsyncServiceInterfaceMethod(method, asyncServiceInterface,
        remoteJsonClient);

    final RequestParametersInvokerTemplatedFile body = new RequestParametersInvokerTemplatedFile();
    body.setHttpRequestParameterNames(this.getHttpRequestParameterNamesFromMethodAnnotation(method));
    body.setInvokerType(this.getInvokerTypeFromMethodAnnotation(method));
    body.setParameters(asyncMethod.getParameters());
    body.setReturnType(method.getReturnType());

    final Iterator newMethodParameters = asyncMethod.getParameters().iterator();
    while (newMethodParameters.hasNext()) {
      final NewMethodParameter parameter = (NewMethodParameter) newMethodParameters.next();
      parameter.setFinal(true);
View Full Code Here

TOP

Related Classes of rocket.remoting.rebind.rpc.json.requestparameters.RequestParametersInvokerTemplatedFile

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.