JAVA/CORBA CLASSES


Examples: removeAll method
This agent removes all the documents returned by a full-text search in a folder.

import lotus.domino.*;
public class JavaAgent extends AgentBase {
 public void NotesMain() {
   try {
     Session session = getSession();
     AgentContext agentContext = session.getAgentContext();
     // (Your code goes here)
     Database db = agentContext.getCurrentDatabase();
     if (db.isFTIndexed()) db.updateFTIndex(false);
     else db.updateFTIndex(true);
     DocumentCollection dc = db.getAllDocuments();
     dc.FTSearch("blue");
     if (dc.getCount() > 0) {
       System.out.println(dc.getCount() +
       " \"blue\" documents being removed from database ...");
       dc.removeAll(true); }
   } catch(NotesException e) {
     System.out.println(e.id + " " + e.text);
     e.printStackTrace();
   }
 }
}

See Also