Examples: stampAll method (DocumentCollection - Java)

This agent replaces the value of an item in documents found through a full-text search.


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("red");
      if (dc.getCount() > 0) {
        System.out.println(dc.getCount() +
        " \"red\" documents being stamped ...");
        dc.stampAll("Color", "red"); }
    } catch(NotesException e) {
      System.out.println(e.id + " " + e.text);
      e.printStackTrace();
    }
  }
}