Package com.browsermob.pageperf.server

Examples of com.browsermob.pageperf.server.Rollup


    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        String testId = req.getParameter("testId");
        ChartType type = ChartType.valueOf(req.getParameter("type"));
        Rollup rollup = Rollup.valueOf(req.getParameter("rollup"));
        List<String> args = new ArrayList<String>();
        int i = 1;
        while (true) {
            String arg = req.getParameter("arg" + i);
            if (arg == null) {
View Full Code Here

TOP

Related Classes of com.browsermob.pageperf.server.Rollup

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.