Examples: createACLEntry and save methods

This agent creates a new entry for the ACL of the current database. The user specifies the name of the entry in the agent comment. The entry has manager access level.

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();
      acl.createACLEntry(agent.getComment(), 
           ACL.LEVEL_MANAGER);
      acl.save();
    } catch(Exception e) {
      e.printStackTrace();
    }
  }
}