JAVA/CORBA CLASSES


Examples: getNextDocument method
This agent gets all the documents in the By Category view of the current database.

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");
     System.out.println
     ("***By Category view - all documents***");
     Document doc = view.getFirstDocument();
     while (doc != null) {
       System.out.println
       ("\t" + doc.getItemValueString("Subject"));
       doc = view.getNextDocument(doc); }
   } catch(Exception e) {
     e.printStackTrace();
   }
 }
}

See Also