JAVA/CORBA CLASSES


Examples: Comment property
This agent prints the name and comment of the current agent.

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();
     System.out.println
     ("Current agent is \"" + agent.getName() +
            "\"");
     System.out.println
     ("Comment: " + agent.getComment());
   } catch(Exception e) {
     e.printStackTrace();
   }
 }
}

See Also