ALF-9156 Port the existing (SharePoint Specific) recurring events logic to Java, and add some basic tests for fetching it

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@28917 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Nick Burch
2011-07-11 14:22:48 +00:00
parent 869afa4673
commit 9adcac3910
2 changed files with 9 additions and 9 deletions

View File

@@ -94,18 +94,19 @@ public interface CalendarEntry extends Serializable, PermissionCheckValue {
/**
* Gets the event recurrence rule.
* TODO Define these
* This needs to be in the SharePoint/Outlook format of
* FREQ=...;INTERVAL=...;BY...=...;COUNT=...
*/
String getRecurrenceRule();
/**
* Sets the event recurrence rule
* TODO Define these
* Sets the event recurrence rule, in SharePoint/Outlook format
*/
void setRecurrenceRule(String recurrenceRule);
/**
* Gets the date of the last instance of this recurring event
* Gets the date of the last instance of this recurring event,
* i.e. the last date up until which recurrances will occur.
*/
Date getLastRecurrence();