final UserEntry entry = bob.createEntry();
entry.setTitle("GeDA");
entry.setBody("Hey all, This GeDA stuff really works!!!");
final User john = dao.create("John");
final UserEntryReply reply = entry.createReply(john);
reply.getReplyEntry().setBody("Awesome!");
}