ProtocolUtils.expectHeader(unmarshaller, ServerManagerProtocol.RETURN_SERVER_NAME);
String serverName = unmarshaller.readUTF();
ProtocolUtils.expectHeader(unmarshaller, ServerManagerProtocol.RETURN_SERVER_GROUP_NAME);
String groupName = unmarshaller.readUTF();
ProtocolUtils.expectHeader(unmarshaller, ServerManagerProtocol.RETURN_SERVER_STATUS);
ServerStatus status = unmarshal(unmarshaller, ServerStatus.class);
map.put(new ServerIdentity(id, groupName, serverName), status);
}
return map;
}