legacy-knowledge-base
公開されました Jul. 2, 2025

カレンダー イベントの招待者のリストをプログラムで取得する方法

written-by

Sorin Pop

How To articles are not official guidelines or officially supported documentation. They are community-contributed content and may not always reflect the latest updates to Liferay DXP. We welcome your feedback to improve How To articles!

While we make every effort to ensure this Knowledge Base is accurate, it may not always reflect the most recent updates or official guidelines.We appreciate your understanding and encourage you to reach out with any feedback or concerns.

legacy-article

learn-legacy-article-disclaimer-text

問題

  • イベントへの招待を受け入れたユーザーのリストを取得したい (ただし、UI でイベントを表示するのではなく、プログラムによって)

Environment

  • DXP 7.2

解決策

- バックグラウンドでは、カレンダー イベントはカレンダー予約と呼ばれます (そのため、CalendarBooking*、CalendarResource* などのクラスを探します。 Java API も役立つ場合があります)
- ユーザーが他のユーザーをイベントに招待すると、招待ごとに新しいカレンダー予約がバックグラウンドで作成されます
- 招待されたユーザーはカレンダー リソースとして処理されます
- 招待者の取得を担当するコード スニペットは次のとおりです。

https://github.com/liferay/liferay-portal/blob/master/modules/apps/calendar/calendar-web/src/main/java/ com/liferay/calendar/web/internal/portlet/CalendarPortlet.java#L1286

- ここで、getChildCalendarBookings() が招待に属する予約
を返し、getCalendarResources() メソッドが返すことがわかります招待されたユーザー

did-this-article-resolve-your-issue

legacy-knowledge-base