会議のエントリ (複数可) を削除します。
void NotesCalendarEntry.remove()
throws NotesException
void NotesCalendarEntry.remove(int scope, String recurid)
throws NotesException
パラメータ | 説明 |
---|---|
scope | 反復操作の範囲:
|
recurid | 反復するカレンダーイベントの反復識別子 (RECURRENCE-ID アイテム)。 反復識別子の形式は、UTC 形式での時刻です (20120913T160000Z など)。 |
可能性のある例外 | 値 | テキスト | 説明 |
---|---|---|---|
NotesError.NOTES_ERR_INVALIDID | 4757 | 無効 ID | NotesCalendarEntry オブジェクトの識別子が無効です。 |
NotesError.NOTES_ERR_RECURID_NOTFOUND | 4808 | 反復識別子が見つかりません。 | NotesCalendarEntry オブジェクトの反復識別子が無効です。 |
NotesError.NOTES_ERR_IDNOTFOUND | 4814 | ID が見つかりません | NotesCalendarEntry オブジェクトの反復識別子がカレンダーのエントリを示していないか、 反復識別子の scope と recurid がありません。 |
AutoSendNotices が false の場合、remove はエントリを削除します (完全に削除します)。
このメソッドは会議のエントリを処理し、通知は処理しません。
import lotus.domino.*;
public class JavaAgent extends AgentBase {
public void NotesMain() {
try {
Session session = getSession();
AgentContext agentContext = session.getAgentContext();
// (Your code goes here)
String uid = session.getEnvironmentString("currentuid");
if (uid != null) {
String recurid = session.getEnvironmentString("currentrecurid");
DbDirectory dbdir = session.getDbDirectory("");
Database maildb = dbdir.openMailDatabase();
NotesCalendar cal = session.getCalendar(maildb);
NotesCalendarEntry cale = cal.getEntry(uid);
System.out.println("recurid = " + recurid);
if (recurid == null || recurid.length() == 0) {
cale.remove();
} else {
cale.remove(recurid, NotesCalendarEntry.CS_RANGE_REPEAT_ALL);
}
}
} catch(Exception e) {
e.printStackTrace();
}
}
}
LotusScript® NotesCalendarEntry クラスの Remove メソッド