if(person.equals(viewer))
nc.setType("person");
else
nc.setType("friend");
Node n = new Node();
n.setLabel(person.getName());
n.setId(person.getId());
n.setStandalone(standalone);
n.setLevel(level);
nc.setContent(n);
//append the node to the buffer
nc.toJSON(buffer);