001
014
015 package com.liferay.portlet.calendar.service.persistence;
016
017 import aQute.bnd.annotation.ProviderType;
018
019
023 @ProviderType
024 public interface CalEventFinder {
025 public int countByG_SD_T(long groupId, java.util.Date startDateGT,
026 java.util.Date startDateLT, boolean timeZoneSensitive,
027 java.lang.String[] types);
028
029 public java.util.List<com.liferay.portlet.calendar.model.CalEvent> findByFutureReminders();
030
031 public java.util.List<com.liferay.portlet.calendar.model.CalEvent> findByNoAssets();
032
033 public java.util.List<com.liferay.portlet.calendar.model.CalEvent> findByG_SD_T(
034 long groupId, java.util.Date startDateGT, java.util.Date startDateLT,
035 boolean timeZoneSensitive, java.lang.String[] types);
036
037 public java.util.List<com.liferay.portlet.calendar.model.CalEvent> findByG_SD_T(
038 long groupId, java.util.Date startDateGT, java.util.Date startDateLT,
039 boolean timeZoneSensitive, java.lang.String[] types, int start, int end);
040 }