public void enviarResposta(String resposta) {
HttpServletRequest request = this.getThreadLocalRequest();
HttpSession session = request.getSession();
GameServer game = (GameServer)session.getAttribute("GameServerInstance");
game.anotarResposta(resposta);
}
}