public void execute(ClientConnection connection, ObjectInputStream is,
ObjectOutputStream os) throws IOException, ClassNotFoundException
{
int clientId = is.readInt();
ClientConnection client = getConnectionManager().getClientById(clientId);
if (client == null)
{
throw new IOException();
}
os.write(ClientServerProtocol.PROTOCOL_LINK);
os.write(ClientServerProtocol.Link.OP_ADDRESS);
os.writeInt(clientId);
os.writeObject(new InetSocketAddress(client.getAddress(), client.getPort()));
}