dao.save(null, note);
return note;
}
private void createNotification(DAO dao, String message, Key to) {
final Notification notification = new Notification();
notification.setMessage(message);
notification.setTo(to);
notifications.add(notification);
}