JAVA/CORBA クラス


例:CommonOwner プロパティ
次のエージェントは、現在のエージェントの所有者 (最終更新者) の共通名を出力します。

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
("Common owner:" + agent.getCommonOwner());
} catch(Exception e) {
e.printStackTrace();
}
}
}

関連項目