Examples: putAllInFolder method (DocumentCollection - Java™)
This agent puts 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.putAllInFolder("Blue", false);
} catch(NotesException e) {
System.out.println(e.id + " " + e.text);
e.printStackTrace();
}
}
}