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

@@ -67,6 +67,7 @@ public class CalendarEntryImpl extends CalendarEntryDTO
/**
* Builds up the node properties for a given Calendar Entry
* Doesn't handle tags, those must be done in the service itself.
*/
protected static Map<QName,Serializable> toNodeProperties(CalendarEntry entry)
{
@@ -84,13 +85,12 @@ public class CalendarEntryImpl extends CalendarEntryDTO
// properties.put(CalendarModel.PROP_COLOR, entry.getColor();
// TODO Tags, doc folders
return properties;
}
/**
* Populates a Calendar Entry from the given node properties
* Populates a Calendar Entry from the given node properties.
* Doesn't handle tags, those must be done in the service itself.
*/
protected static void populate(CalendarEntry entry, Map<QName,Serializable> properties)
{
@@ -108,12 +108,11 @@ public class CalendarEntryImpl extends CalendarEntryDTO
entry.setOutlookUID((String)properties.get(CalendarModel.PROP_OUTLOOK_UID));
//entry.setColor(properties.get(CalendarModel.PROP_COLOR));
// TODO Tags, doc folders
}
/**
* Populates this entry from the given node properties
* Doesn't handle tags, those are done in the service itself.
*/
protected void populate(Map<QName,Serializable> properties)
{

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();