if (acquired) {
String nick = user.getUsername();
if (bannedList.contains(nick)) {
throw new ClientBannedException("L'utente " + nick + " è stato bannato!");
}
if (userList.containsKey(nick)) {
throw new ClientConnectException("L'utente " + nick + " è già connesso!");
} else {
userList.put(nick, user);