Package com.browsermob.pageperf.server

Examples of com.browsermob.pageperf.server.QueryResult


    }

    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        String query = req.getParameter("query");
        QueryResult result = dataStore.query(query);
        objectMapper.writeValue(resp.getOutputStream(), result);
    }
View Full Code Here

TOP

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

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.