例: removePermanently method

次のエージェントは、[一時的削除を許可] が有効になっているかどうかと、ユーザープリファレンスに基づいて、現在の文書の完全な削除または一時的削除を実行します。

import lotus.domino.*;

public class JavaAgent extends AgentBase {

  public void NotesMain() {

    try {
      Session session = getSession();
      AgentContext agentContext = session.getAgentContext();

      // (Your code goes here) 
      DocumentCollection dc = agentContext.getUnprocessedDocuments();
      Document doc = dc.getFirstDocument();
      if (doc.removePermanently(false))
        System.out.println("Document removed");
      else
        System.out.println("Document not removed");

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