public interface SignupCacheService
SignupMeetingService is an interface, which provides methods to cache the search results of a list of the SignupMeeting objects from the DB.
| Modifier and Type | Method and Description |
|---|---|
List<SignupMeeting> |
getAllSignupMeetingsInSite(String siteId,
Date startDate,
int timeFrameInDays)
This returns a subset list of SignupMeeting from startDate to endDate for
a specific site
|
List<SignupMeeting> |
getAllSignupMeetingsInSites(List<String> siteIds,
Date startDate,
int timeFrameInDays)
This returns a subset list of SignupMeeting from startDate to endDate for
the sites
|
List<SignupMeeting> getAllSignupMeetingsInSites(List<String> siteIds, Date startDate, int timeFrameInDays)
siteIds - a collection of unique ids which represents the multiple sitesstartDate - date,which constraints the search starting date.timeFrameInDays - search time frame as int value.List<SignupMeeting> getAllSignupMeetingsInSite(String siteId, Date startDate, int timeFrameInDays)
siteIds - a collection of unique ids which represents the multiple sitesstartDate - date,which constraints the search starting date.timeFrameInDays - search time frame as int value.Copyright © 2007–2018 Sakai Project. All rights reserved.