public void storeNote(String id, String title, String content) {
   NoteHeader note = getNoteProvider(false).getNote(id);
   if (note != null) {
     setChanged();
     note.setTitle(title);
     session.set(id, content);
     listeners.noteChanced(id);
   }
 }