JAVA/CORBA CLASSES


Examples: IsDelayUpdates property
This agent enables delayed updates for the current database if the comment for the current agent is "DelayUpdates."

import lotus.domino.*;
public class JavaAgent extends AgentBase {
 public void NotesMain() {
   try {
     Session session = getSession();
     AgentContext agentContext = session.getAgentContext();
     // (Your code goes here)
     Agent agent = agentContext.getCurrentAgent();
     Database db = agentContext.getCurrentDatabase();
     if (agent.getComment().equals("DelayUpdates"))
       db.setDelayUpdates(true);
     else
       db.setDelayUpdates(false);
     System.out.println
     ("Delay updates is " + db.isDelayUpdates());
   } catch(Exception e) {
     e.printStackTrace();
   }
 }
}

See Also