protected void tournamentCreated(
     MTTStateSupport state,
     PokerTournamentState pokerState,
     LobbyAttributeAccessor lobbyAttributeAccessor) {
   pokerState.setResurrectingTournament(isResurrection);
   log.debug(
       "Tournament created " + pokerState.getHistoricId() + " is resurrection " + isResurrection);
   if (isResurrection) {
     pokerState.setShouldCancel(shouldCancelResurrectingTournament);
     pokerState.setResurrectingPlayers(resurrectingPlayers);
     pokerState.setTournamentSessionId(new TournamentSessionId(tournamentSessionId));
     log.debug("Tournament session id: " + tournamentSessionId);
   }
   setLobbyAttributes(lobbyAttributeAccessor);
 }