JAVA/CORBA クラス


例:IsDisabled プロパティ、clearHistory メソッド、save メソッド
次のエージェントは、複製の履歴を消去し、複製を無効にします。

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();
     Replication replication = db.getReplicationInfo();
     replication.clearHistory();
     replication.setDisabled(true);
     replication.save();
   } catch(Exception e) {
     e.printStackTrace();
   }
 }
}

関連項目