Package com.indeed.proctor.consumer

Examples of com.indeed.proctor.consumer.AbstractGroups


    public void handleRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        response.setContentType("text/plain;charset=UTF-8");

        final PrintWriter writer = response.getWriter();

        AbstractGroups grps = groupsSupplier.determineGroups(request);
        if(grps == null) {
            writer.println("Did not determine any groups");
        } else {
            final StringBuilder sb = new StringBuilder();
            grps.appendTestGroups(sb, '\n');
            writer.print(sb.toString());
        }
    }
View Full Code Here

TOP

Related Classes of com.indeed.proctor.consumer.AbstractGroups

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.