Examples: ReplicaID property (Database - Java)

This agent prints the replica ID of 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 repid = db.getReplicaID();
      System.out.println("Database \"" + title +
      "\" has the replica ID " + repid);
    } catch(Exception e) {
      e.printStackTrace();
    }
  }
}