public void notification(@WebModel Map m, @WebParam("room") String room, RequestContext rc) {
Table table = gameManager.getTable(room);
List playerList = table.getPlayers();
List playerList2 = new ArrayList();
for (int i = 0; i < playerList.size(); i++) {
Player player = (Player) playerList.get(i);
Map playerMap = new HashMap();
playerMap.put("pokerChip", player.getCash());
playerMap.put("player", player.getName());
Card[] handArr = player.getHand().getCards();
List handList = new ArrayList();
for (int j = 0; j < handArr.length; j++) {
handList.add(handArr[j].toString());
}
playerMap.put("handCards", handList);
playerMap.put("playerId", player.getId());
playerMap.put("status", player.getAction() == null ? "" : player.getAction().getName());
playerList2.add(playerMap);
//
if (player.getId().equals(rc.getReq().getSession().getAttribute("playerId"))) {
List actionList = new ArrayList();
actionList.add("Continue");
actionList.add("Raise");
actionList.add("Fold");
playerMap.put("actions", actionList);