JAVA/CORBA CLASSES


Examples: isRoleEnabled method
This agent prints a message for each ACL entry that states whether the role specified as the agent comment is enabled.

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.getFirstEntry();
     do {
       if (entry.isRoleEnabled(agent.getComment()))
         System.out.println
         (agent.getComment() +
         " is enabled for " + entry.getName());
       else {
         System.out.println
         (agent.getComment() +
         " is disabled for " + entry.getName()); }}
     while ((entry = acl.getNextEntry(entry)) != null);
   } catch(Exception e) {
     e.printStackTrace();
   }
 }
}

See Also