JAVA/CORBA CLASSES


Examples: updateAll method
This is an example of an agent that runs on, "All new & modified documents." The agent processes the documents returned by getUnprocessedDocuments and marks them as updated.

import lotus.domino.*;
public class JavaAgent extends AgentBase {
 public void NotesMain() {
   try {
     Session session = getSession();
     AgentContext agentContext =
     session.getAgentContext();
     // (Your code goes here)
     DocumentCollection dc =
             agentContext.getUnprocessedDocuments();
     Document doc = dc.getFirstDocument();
     while (doc != null) {
       System.out.println(doc.getItemValueString("Subject"));
       doc = dc.getNextDocument(); }
     dc.updateAll();
   } catch(NotesException e) {
     System.out.println(e.id + " " + e.text);
     e.printStackTrace();
   }
 }
}

See Also