JAVA/CORBA CLASSES


Examples: removeAllFromFolder method
This agent removes from a folder 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");
     dc.removeAllFromFolder("Blue");
   } catch(NotesException e) {
     System.out.println(e.id + " " + e.text);
     e.printStackTrace();
   }
 }
}

See Also