指定されたユニバーサル ID (UNID) に基づいてカレンダー通知を取得します。
NotesCalendarNotice NotesCalendar.getNoticeByUNID(String unid)
throws NotesException
パラメータ | 説明 |
---|---|
unid | 通知を含む Domino 文書の、ユニバーサル ID (UNID)。 |
戻り値 | 説明 |
---|---|
NotesCalendarEntry | カレンダー通知。 識別子が正しくない場合は、例外が発生します。 |
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 メソッド