JAVA/CORBA CLASSES


Examples: addRole method
This agent adds a role to the ACL of the current database. The user specifies the role in the agent comment.

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

See Also