ALF-9156 Finish recurring event support in the calendar listing webscript, and add in new unit tests to cover this case

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@29235 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Nick Burch
2011-07-20 17:44:55 +00:00
parent 858748ddf1
commit aaf02b7f6c
2 changed files with 2 additions and 1 deletions

View File

@@ -241,6 +241,7 @@ public class GetCalendarEntriesCannedQuery extends AbstractCannedQueryPermission
private class CalendarEntryImpl extends org.alfresco.repo.calendar.CalendarEntryImpl private class CalendarEntryImpl extends org.alfresco.repo.calendar.CalendarEntryImpl
{ {
private static final long serialVersionUID = 5717119409619436964L;
private CalendarEntryImpl(CalendarEntity entity) private CalendarEntryImpl(CalendarEntity entity)
{ {
super( super(

View File

@@ -198,7 +198,7 @@ public class CalendarRecurrenceHelper
String freq = params.get("FREQ"); String freq = params.get("FREQ");
String intervalS = params.get("INTERVAL"); String intervalS = params.get("INTERVAL");
int interval = 1; int interval = 1;
if(intervalS == null) if(intervalS != null)
{ {
try try
{ {