ユニバーサル ID (UNID) が指定された場合に、カレンダーエントリを取得します。
NotesCalendarEntry NotesCalendar.getEntryByUNID(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)
// calentry environment variable must be previously set
Integer n = (Integer)session.getEnvironmentValue("calentry");
DbDirectory dbdir = session.getDbDirectory("");
Database maildb = dbdir.openMailDatabase();
View calview = maildb.getView("($Calendar)");
Document caldoc = calview.getNthDocument(n.intValue());
// Create document to post results
Database db = agentContext.getCurrentDatabase();
Document doc = db.createDocument();
doc.appendItemValue("Form", "main");
doc.appendItemValue("subject", "Calendar entry");
RichTextItem body = doc.createRichTextItem("body");
// Get entry and put in body of document
if (caldoc != null) {
String unid = caldoc.getUniversalID();
NotesCalendar cal = session.getCalendar(maildb);
body.appendText("Calendar entry for UNID " + unid + "¥n");
body.appendText(cal.getEntryByUNID(unid).read());
} else {
body.appendText("Calendar entry out of range");
}
doc.save(true, true);
} catch(Exception e) {
e.printStackTrace();
}
}
}
LotusScript® NotesCalendar クラスの GetEntryByUNID メソッド