JAVA/CORBA CLASSES


Examples: Title property
This agent appends "(Marketing)" to the title 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();
     String title = db.getTitle();
     if (title.endsWith("(Marketing)"));
     else {
       title = title + " (Marketing)";
       db.setTitle(title); }
   } catch(Exception e) {
     e.printStackTrace();
   }
 }
}

See Also