Examples of toParameterMap()


Examples of cn.edu.zju.acm.onlinejudge.form.LogSearchForm.toParameterMap()

        if (criteria.getTimeStart() == null) {
          criteria.setTimeStart(new Date(System.currentTimeMillis() - 24 * 3600 * 1000));
        }
        List<ActionLog> logs = PerformanceManager.getInstance().getActionDashboard(criteria, searchForm.getOrderBy());
       
        context.setAttribute("parameters", searchForm.toParameterMap());
        context.setAttribute("logs", logs);
                       
        return handleSuccess(mapping, context, "success");
                            
    }        
View Full Code Here

Examples of cn.edu.zju.acm.onlinejudge.form.LogSearchForm.toParameterMap()

        List<AccessLog> logs =
                PerformanceManager.getInstance().searchLogs(criteria, (page - 1) * 20, logsPerPage,
                                                            searchForm.getOrderBy());

        context.setAttribute("parameters", searchForm.toParameterMap());
        context.setAttribute("page", page);
        context.setAttribute("logsPerPage", logsPerPage);
        context.setAttribute("logs", logs);

        return this.handleSuccess(mapping, context, "success");
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.