例: NotesURL property (Document - Java™)

このエージェントは、現在のデータベースの Notes と HTTP の URL を取得します。Notes (HTTP URL は空白) からアクセスするか、または HTTP プロトコルからアクセスするかによって、エージェントの表示が変わります。

import lotus.domino.*;
import java.io.PrintWriter;

public class JavaAgent extends AgentBase {

  public void NotesMain() {

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

      // (Your code goes here) 
      Database db = agentContext.getCurrentDatabase();
      DocumentCollection dc = db.getAllDocuments();
      Document doc = dc.getFirstDocument();
      
      // Get URLs
      String notesURL = doc.getNotesURL();
      String httpURL = doc.getHttpURL();
      
      // Assume local if http is blank and print info for notes
      if (httpURL.length() == 0) {
        System.out.println("NotesURL = " + notesURL);
        System.out.println("Http URL = None");
      }
      
      // If http exists print info for both assuming output to browser
      else {
        PrintWriter pw = getAgentOutput();
        pw.println("NotesURL = " + notesURL);
        pw.println("<BR>HttpURL = " + httpURL);
      }

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