Examples: CommonOwner property (Agent - Java™)
This agent prints the common owner name of the current agent.
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.getCommonOwner());
} catch(Exception e) {
e.printStackTrace();
}
}
}