001
014
015 package com.liferay.portlet.calendar.service.persistence;
016
017
020 public interface CalEventFinder {
021 public java.util.List<com.liferay.portlet.calendar.model.CalEvent> findByFutureReminders()
022 throws com.liferay.portal.kernel.exception.SystemException;
023
024 public java.util.List<com.liferay.portlet.calendar.model.CalEvent> findByNoAssets()
025 throws com.liferay.portal.kernel.exception.SystemException;
026
027 public java.util.List<com.liferay.portlet.calendar.model.CalEvent> findByG_SD(
028 long groupId, java.util.Date startDateGT, java.util.Date startDateLT,
029 boolean timeZoneSensitive)
030 throws com.liferay.portal.kernel.exception.SystemException;
031 }