JAVA/CORBA CLASSES


Examples: ParentDatabase property
This example prints the file name of the parent database of the Products outline.

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();
           Outline outline = db.getOutline("Products");
           Database db2 = outline.getParentDatabase();
           System.out.println(db2.getFileName());
       } catch(Exception e) {
         e.printStackTrace();
       }
   }
}

See Also