mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
ALF-9156 More on the Calendar code, including improved dates for the get webscript
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@28847 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -80,6 +80,7 @@ public class CalendarEntryImpl extends CalendarEntryDTO
|
||||
properties.put(CalendarModel.PROP_RECURRENCE_LAST_MEETING, entry.getLastRecurrence());
|
||||
properties.put(CalendarModel.PROP_IS_OUTLOOK, entry.isOutlook());
|
||||
properties.put(CalendarModel.PROP_OUTLOOK_UID, entry.getOutlookUID());
|
||||
properties.put(CalendarModel.PROP_DOC_FOLDER, entry.getSharePointDocFolder());
|
||||
|
||||
// properties.put(CalendarModel.PROP_COLOR, entry.getColor();
|
||||
|
||||
@@ -100,6 +101,7 @@ public class CalendarEntryImpl extends CalendarEntryDTO
|
||||
entry.setEnd((Date)properties.get(CalendarModel.PROP_TO_DATE));
|
||||
entry.setRecurrenceRule((String)properties.get(CalendarModel.PROP_RECURRENCE_RULE));
|
||||
entry.setLastRecurrence((Date)properties.get(CalendarModel.PROP_RECURRENCE_LAST_MEETING));
|
||||
entry.setSharePointDocFolder((String)properties.get(CalendarModel.PROP_DOC_FOLDER));
|
||||
|
||||
Boolean isOutlook = (Boolean)properties.get(CalendarModel.PROP_IS_OUTLOOK);
|
||||
entry.setOutlook(isOutlook == null ? false : isOutlook);
|
||||
|
Reference in New Issue
Block a user