001
014
015 package com.liferay.portlet.wiki.service.persistence;
016
017 import aQute.bnd.annotation.ProviderType;
018
019
023 @ProviderType
024 public interface WikiPageFinder {
025 public int countByCreateDate(long groupId, long nodeId,
026 java.util.Date createDate, boolean before);
027
028 public int countByCreateDate(long groupId, long nodeId,
029 java.sql.Timestamp createDate, boolean before);
030
031 public int filterCountByCreateDate(long groupId, long nodeId,
032 java.util.Date createDate, boolean before);
033
034 public int filterCountByCreateDate(long groupId, long nodeId,
035 java.sql.Timestamp createDate, boolean before);
036
037 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> filterFindByCreateDate(
038 long groupId, long nodeId, java.util.Date createDate, boolean before,
039 int start, int end);
040
041 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> filterFindByCreateDate(
042 long groupId, long nodeId, java.sql.Timestamp createDate,
043 boolean before, int start, int end);
044
045 public com.liferay.portlet.wiki.model.WikiPage findByResourcePrimKey(
046 long resourcePrimKey)
047 throws com.liferay.portlet.wiki.NoSuchPageException;
048
049 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByCreateDate(
050 long groupId, long nodeId, java.util.Date createDate, boolean before,
051 int start, int end);
052
053 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByCreateDate(
054 long groupId, long nodeId, java.sql.Timestamp createDate,
055 boolean before, int start, int end);
056
057 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByNoAssets();
058 }