getNoticeByUNID (NotesCalendar - Java)

指定されたユニバーサル ID (UNID) に基づいてカレンダー通知を取得します。

定義位置

NotesCalendar

構文

NotesCalendarNotice NotesCalendar.getNoticeByUNID(String unid)
	throws NotesException
パラメータ 説明
unid 通知を含む Domino 文書の、ユニバーサル ID (UNID)。
戻り値 説明
NotesCalendarEntry カレンダー通知。 識別子が正しくない場合は、例外が発生します。

このエージェントは、 環境変数に書き込まれた UNID に対応する通知を取得します。
import lotus.domino.*;

public class JavaAgent extends AgentBase {

    public void NotesMain() {

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

          // (Your code goes here)
          DbDirectory dbdir = session.getDbDirectory("");
          Database maildb = dbdir.openMailDatabase();
          // Create document to post results
          Database db = agentContext.getCurrentDatabase();
          Document doc = db.createDocument();
          doc.appendItemValue("Form", "main");
          doc.appendItemValue("subject", "Calendar notice");
          RichTextItem body = doc.createRichTextItem("body");
          // Get notice and put in body of document
          String unid = session.getEnvironmentString("noticeunid");
          NotesCalendar cal = session.getCalendar(maildb);
          body.appendText("Calendar notice for UNID " + unid + "¥n");
          body.appendText(cal.getNoticeByUNID(unid).read());
          doc.save(true, true);

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

クロスリファレンス

LotusScript® NotesCalendar クラスの GetNoticeByUNID メソッド