JAVA/CORBA CLASSES


Examples: getEntry method
This agent gets the ACL entry whose name is the agent comment, and prints whether the entry can delete documents.

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.getEntry(agent.getComment());
     if (entry != null) {
       if (entry.isCanDeleteDocuments())
         System.out.println
         (entry.getName() + " can delete documents");
       else
         System.out.println
         (entry.getName() + " cannot delete documents");}
     else
       System.out.println
       ("No entry for " + agent.getComment());
   } catch(Exception e) {
     e.printStackTrace();
   }
 }
}

See Also