Support for listing calendar entries by their outlook status (isOutlook / OutlookUID), via a Canned Query

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@38094 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Nick Burch
2012-06-20 21:38:53 +00:00
parent 33db4ac506
commit 74a9e650c2
5 changed files with 96 additions and 0 deletions

View File

@@ -82,4 +82,11 @@ public interface CalendarService
*/
@NotAuditable
PagingResults<CalendarEntry> listCalendarEntries(String[] siteShortNames, Date from, Date to, PagingRequest paging);
/**
* Retrieves all Outlook based {@link CalendarEntry} instances in the repository
* for the given site, optionally filtered by the Outlook Event UID.
*/
@NotAuditable
PagingResults<CalendarEntry> listOutlookCalendarEntries(String siteShortName, String outlookUID, PagingRequest paging);
}