Class RecurringEventServiceImpl
java.lang.Object
ch.tocco.nice2.optional.calendar.impl.ical.recur.RecurringEventServiceImpl
- All Implemented Interfaces:
RecurringEventService
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiontoCalendarEventList(CalendarEvent calendarEvent, DateTimeValue startDateTimeValue, DateTimeValue endDateTimeValue) toCalendarEventList(Entity calendarEvent, DateTimeValue startDateTimeValue, DateTimeValue endDateTimeValue) creates aCalendarEventfor the given entity and then callsRecurringEventService.toCalendarEventList(CalendarEvent, DateTimeValue, DateTimeValue)
-
Constructor Details
-
RecurringEventServiceImpl
-
-
Method Details
-
toCalendarEventList
public List<CalendarEvent> toCalendarEventList(CalendarEvent calendarEvent, DateTimeValue startDateTimeValue, DateTimeValue endDateTimeValue) Description copied from interface:RecurringEventServicegenerates multipleCalendarEventfrom the providedCalendarEventif it is aRecurringEvent. The returnedListdoes only containCalendarEvents within the provided parameter boundaries ofstartDateTimeValueandendDateTimeValue.- Specified by:
toCalendarEventListin interfaceRecurringEventService- Parameters:
calendarEvent- a recurring event. seeRecurringEventstartDateTimeValue- the lower boundaryendDateTimeValue- the upper boundary- Returns:
- a resolved list of
CalendarEvents
-
toCalendarEventList
public List<CalendarEvent> toCalendarEventList(Entity calendarEvent, DateTimeValue startDateTimeValue, DateTimeValue endDateTimeValue) Description copied from interface:RecurringEventServicecreates aCalendarEventfor the given entity and then callsRecurringEventService.toCalendarEventList(CalendarEvent, DateTimeValue, DateTimeValue)- Specified by:
toCalendarEventListin interfaceRecurringEventService- Parameters:
calendarEvent- a Calendar_event entitystartDateTimeValue- the lower boundaryendDateTimeValue- the upper boundary- Returns:
- a resolved list of
CalendarEvents
-