次のエージェントは、ディスカッションテンプレートから新規データベースを作成します。
import lotus.domino.*;
public class JavaAgent extends AgentBase {
public void NotesMain() {
try {
Session session = getSession();
AgentContext agentContext =
session.getAgentContext();
// (Your code goes here)
Database template = session.getDatabase(null,
"discsw50.ntf");
Database newdb = template.createFromTemplate
(null, "suggest", true);
newdb.setTitle("Suggestions for Giving Campaign");
newdb.grantAccess("-Default-", ACL.LEVEL_READER);
System.out.println("¥"Suggestions for Giving
Campagn¥" created");
} catch(Exception e) {
e.printStackTrace();
}
}
}