次のエージェントは、現在の文書の Body アイテム内で最初の (または唯一の) 文書リンクのデータベースが保存されているサーバーを表示します。
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();
}
}
}