Examples: ServerHint property (NotesRichTextDocLink - Java)

This agent displays the server of the database of the first or only doclink in the Body item of the current document.

import lotus.domino.*;

public class JavaAgent extends AgentBase {

  public void NotesMain() {

    try {
      Session session = getSession();
      AgentContext agentContext = session.getAgentContext();

      // (Your code goes here) 
      DocumentCollection dc = agentContext.getUnprocessedDocuments();
      Document doc = dc.getFirstDocument();
      RichTextItem body = (RichTextItem)doc.getFirstItem("Body");
      RichTextNavigator rtnav = body.createNavigator();
      if (rtnav.findFirstElement(RichTextItem.RTELEM_TYPE_DOCLINK)) {
        RichTextDoclink rtlink = (RichTextDoclink)rtnav.getElement();
        String server = rtlink.getServerHint();
        if (server.length() == 0)
          System.out.println("Doclink points to a local database");
        else
          System.out.println(
            "Doclink points to a database on " + server);
      }
      else
        System.out.println("No doclinks in Body");

    } catch(Exception e) {
      e.printStackTrace();
    }
  }
}