JAVA/CORBA クラス


例:LastModified プロパティ
このエージェントは、現在のデータベースが最後に変更された日付と時刻を出力します。

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 lastMod = db.getLastModified().getLocalTime();
String title = db.getTitle();
System.out.println("Database \"" + title +
"\" was last modified on " + lastMod);
} catch(Exception e) {
e.printStackTrace();
}
}
}

関連項目