ALF-9156 Start on the calendar entry canned query, with date filtering, based on the Blog one

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@28998 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Nick Burch
2011-07-13 17:12:04 +00:00
parent 86f9dfea17
commit 0cb9a6b9f7
6 changed files with 701 additions and 20 deletions

View File

@@ -0,0 +1,61 @@
/*
* Copyright (C) 2005-2011 Alfresco Software Limited.
*
* This file is part of Alfresco
*
* Alfresco is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Alfresco is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
*/
package org.alfresco.repo.calendar.cannedqueries;
import java.util.Date;
/**
* Parameter objects for {@link GetCalendarEntriesCannedQuery}.
*
* @author Nick Burch
* @since 4.0
*/
public class GetCalendarEntriesCannedQueryParams extends CalendarEntity
{
private final Long[] siteContainerNodeIds;
private final Date entriesFromDate;
private final Date entriesToDate;
public GetCalendarEntriesCannedQueryParams(Long[] siteContainerNodeIds,
Long nameQNameId,
Date entriesFromDate,
Date entriesToDate)
{
super(null, nameQNameId);
this.siteContainerNodeIds = siteContainerNodeIds;
this.entriesFromDate = entriesFromDate;
this.entriesToDate = entriesToDate;
}
public Long[] getSiteContainerNodeIds()
{
return siteContainerNodeIds;
}
public Date getEntriesFromDate()
{
return entriesFromDate;
}
public Date getEntriesToDate()
{
return entriesToDate;
}
}