JAVA/CORBA CLASSES


Examples: AgentContext class
This agent gets the context for the current agent, then gets the agent itself and prints the agent name and comment.

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();
     String name = agent.getName();
     String comment = agent.getComment();
     if (comment.equals("")) comment = "No comment";
     System.out.println
     ("Current agent: \"" + name + "\"");
     System.out.println
     ("Comment: \"" + comment + "\"");
   } catch(Exception e) {
     e.printStackTrace();
   }
 }
}

See Also