次のエージェントは、現在のデータベースの作成日付/時刻を出力します。
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 created = db.getCreated().getLocalTime();
String title = db.getTitle();
System.out.println("Database ¥"" + title +
"¥" was created on " + created);
} catch(Exception e) {
e.printStackTrace();
}
}
}