ScoreResponseMessage responseMessage =
HighscoreService.getScoreMessage(requestMessage.getPlayerName());
this.getClient().send(responseMessage);
return this;
} else if (message instanceof DeleteRequestMessage) {
DeleteResponseMessage m = new DeleteResponseMessage();
m.setResponseType(AuthenticationService.delete(
this.getClient().getUserName()));
this.getClient().send(m);
return this;
} else if (message instanceof GameMessage) {
try {