public boolean identify(String name)
{
m_playerName = name;
send(new IdentifyCommand(m_playerName));
final StringTokenizer token = receiveCommand(IdentifyResponse.COMMAND_NAME);
final IdentifyResponse response = new IdentifyResponse(token);
return response.isOK();
}