Examples: removePermanently method

This agent performs a hard or soft deletion of the current document depending on "Allow soft deletions" and user preference.

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();
    }
  }
}