JAVA/CORBA CLASSES


Examples: getLastDocument method
This agent gets the last document 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 - last document***");
     Document doc = view.getLastDocument();
     System.out.println
     ("\t" + doc.getItemValueString("Subject"));
   } catch(Exception e) {
     e.printStackTrace();
   }
 }
}

See Also