JAVA/CORBA CLASSES


Examples: remove method
This agent deletes the view specified by the user in the agent comment from the current database.

import lotus.domino.*;
public class JavaAgent extends AgentBase {
 public void NotesMain() {
   try {
     Session session = getSession();
     AgentContext agentContext = session.getAgentContext();
     // (Your code goes here)
     Database db = agentContext.getCurrentDatabase();
     Agent agent = agentContext.getCurrentAgent();
     View view = db.getView(agent.getComment());
     System.out.println
     ("Removing " + view.getName());
     view.remove();
   } catch(Exception e) {
     e.printStackTrace();
   }
 }
}

See Also