// create new status update node
final Node crrUpdate = NeoUtils.createStatusUpdateNode(content.getId());
// prepare status update for JSON parsing
content.setTimestamp(timestamp);
content.setCreator(new User(user));
// fill status update node
crrUpdate.setProperty(Properties.StatusUpdate.TIMESTAMP, timestamp);
crrUpdate.setProperty(Properties.StatusUpdate.CONTENT_TYPE,
content.getType());