Package org.jboss.aerogear.controller.router.rest.pagination

Examples of org.jboss.aerogear.controller.router.rest.pagination.PagingStrategy.process()


        final Route route = routeContext.getRoute();
        final PagingStrategy pagingStrategy = getPagingStrategy(route, arguments);
        final PaginationInfo paginationInfo = pagingStrategy.getPaginationInfo();
        final List<Object> pagingArgs = merge(paginationInfo, arguments);
        final Object result = route.getTargetMethod().invoke(getController(route), pagingArgs.toArray());
        responders.respond(routeContext, pagingStrategy.process(result, routeContext));
    }
   
    private List<Object> merge(final PaginationInfo paginationInfo, final Map<String, Object> arguments) {
        final List<Object> methodArguments = new LinkedList<Object>();
        arguments.remove(paginationInfo.getOffsetParamName());
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.