次のエージェントは、現在のエージェントの環境を取得した後、エージェント自身を取得してエージェント名とコメントを出力します。
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();
}
}
}