Interface RecurringEventService
- All Known Implementing Classes:
RecurringEventServiceImpl
public interface RecurringEventService
-
Method Summary
Modifier and TypeMethodDescriptiontoCalendarEventList
(CalendarEvent event, DateTimeValue startDateTimeValue, DateTimeValue endDateTimeValue) toCalendarEventList
(Entity calendarEvent, DateTimeValue startDateTimeValue, DateTimeValue endDateTimeValue) creates aCalendarEvent
for the given entity and then callstoCalendarEventList(CalendarEvent, DateTimeValue, DateTimeValue)
-
Method Details
-
toCalendarEventList
List<CalendarEvent> toCalendarEventList(CalendarEvent event, DateTimeValue startDateTimeValue, DateTimeValue endDateTimeValue) generates multipleCalendarEvent
from the providedCalendarEvent
if it is aRecurringEvent
. The returnedList
does only containCalendarEvent
s within the provided parameter boundaries ofstartDateTimeValue
andendDateTimeValue
.- Parameters:
event
- a recurring event. seeRecurringEvent
startDateTimeValue
- the lower boundaryendDateTimeValue
- the upper boundary- Returns:
- a resolved list of
CalendarEvent
s
-
toCalendarEventList
List<CalendarEvent> toCalendarEventList(Entity calendarEvent, DateTimeValue startDateTimeValue, DateTimeValue endDateTimeValue) creates aCalendarEvent
for the given entity and then callstoCalendarEventList(CalendarEvent, DateTimeValue, DateTimeValue)
- Parameters:
calendarEvent
- a Calendar_event entitystartDateTimeValue
- the lower boundaryendDateTimeValue
- the upper boundary- Returns:
- a resolved list of
CalendarEvent
s
-