JAVA/CORBA クラス


例:IsAdminServer プロパティと IsAdminReaderAuthor プロパティ
次のエージェントは、ACL エントリを、読者フィールドと作成者フィールドを変更できるシステム管理サーバーに設定します。

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();
Database db = agentContext.getCurrentDatabase();
ACL acl = db.getACL();
ACLEntry entry = acl.createACLEntry
("tornado", ACL.LEVEL_MANAGER);
entry.setAdminServer(true);
entry.setAdminReaderAuthor(true);
acl.save();

} catch(Exception e) {
e.printStackTrace();
}
}
}

関連項目