Examples: Owner property (Agent - Java)

This agent prints the name and common owner of all the agents in 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) 
      Agent agent = agentContext.getCurrentAgent();
      System.out.println
      ("Current agent is \"" + agent.getName() + 
            "\"");
      System.out.println
      ("Common owner: " + agent.getOwner());
    } catch(Exception e) {
      e.printStackTrace();
    }
  }
}