Package web.servlets

Source Code of web.servlets.AvailableUsers

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package web.servlets;

import java.util.Map;

import javax.servlet.http.HttpServletRequest;

import org.scotlandyard.engine.GameException;
import org.scotlandyard.engine.User;
import org.scotlandyard.engine.json.UsersJsonContainer;
import org.scotlandyard.impl.engine.GameEngine;

/**
* TODO add a description for this class
*
*
* @author Hussain Al-Mutawa
* @version 2.0
* @since Sun Sep 23, 2011
*/
public class AvailableUsers extends AbstractServlet  implements IRequestProcessor{
  //TODO add documentation about the action performed by getting the output of this servlet
  @Override
   public Object getOutput(
         final HttpServletRequest request,
        final GameEngine engine) throws GameException {

    return new UsersJsonContainer(engine.getUsers().values()).toJson();
  }

  @Override
  public void validateRequest(

             final HttpServletRequest request,
            final GameEngine engine) throws GameException {


  }
}
TOP

Related Classes of web.servlets.AvailableUsers

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.