Examples: Server property

This agent prints the name of the server for 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();
      String title = db.getTitle();
      String server = db.getServer();
      if (server != "")
        System.out.println("Database \"" + title +
        "\" resides on server " + server);
      else
        System.out.println("Database \"" + title +
        "\" is local");
    } catch(Exception e) {
      e.printStackTrace();
    }
  }
}