Examples of listUserNotes()


Examples of org.olat.note.NoteManager.listUserNotes()

      int usercounter = 0;
      if (log.isDebug()) log.info("Migrating notes for " + identitiesList.size() + " Identities.");
      for (Iterator<Identity> iterator = identitiesList.iterator(); iterator.hasNext();) {
        Identity identity = iterator.next();
        try{
          List<Note> allIdentityNotes = noteMgr.listUserNotes(identity);
          if (log.isDebug()) log.info("Migrate " + allIdentityNotes.size() + " Notes for Identity: " + identity.getName());
          if (!allIdentityNotes.isEmpty()){
            usercounter++;
            for (Iterator<Note> iterator2 = allIdentityNotes.iterator(); iterator2.hasNext();) {
              try{
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.