Examples: stampAll method (ViewEntryCollection - Java™)
This agent writes the value "Half-baked" to the Status item of all the documents under "Category 2."
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();
View view = db.getView("By Category");
view.setAutoUpdate(false);
ViewEntryCollection vec =
view.getAllEntriesByKey("Category 2", false);
System.out.println("Number of entries found = " +
vec.getCount());
System.out.println("Stamping these entries half-baked");
vec.stampAll("Status", "Half-baked");
} catch(Exception e) {
e.printStackTrace();
}
}
}