JAVA/CORBA クラス


例:CurrentDatabase プロパティ
次のエージェントの例は、現在のデータベースのタイトルを出力します。

import lotus.domino.*;
public class JavaAgent extends AgentBase {
public void NotesMain() {
try {
Session session = getSession();
AgentContext agentContext =
session.getAgentContext();
// (Your code goes here)
Database db = agentContext.getCurrentDatabase();
String title = db.getTitle();
System.out.println
("Current database is \"" + title + "\"");
} catch(Exception e) {
e.printStackTrace();
}
}
}

関連項目