Liferay 6.2.0

com.liferay.portlet.wiki.service.persistence
Interface WikiPageFinder

All Known Implementing Classes:
WikiPageFinderImpl

@ProviderType
public interface WikiPageFinder


Method Summary
abstract  int countByCreateDate(long groupId, long nodeId, Date createDate, boolean before)
           
abstract  int countByCreateDate(long groupId, long nodeId, Timestamp createDate, boolean before)
           
abstract  int filterCountByCreateDate(long groupId, long nodeId, Date createDate, boolean before)
           
abstract  int filterCountByCreateDate(long groupId, long nodeId, Timestamp createDate, boolean before)
           
abstract  List<WikiPage> filterFindByCreateDate(long groupId, long nodeId, Date createDate, boolean before, int start, int end)
           
abstract  List<WikiPage> filterFindByCreateDate(long groupId, long nodeId, Timestamp createDate, boolean before, int start, int end)
           
abstract  List<WikiPage> findByCreateDate(long groupId, long nodeId, Date createDate, boolean before, int start, int end)
           
abstract  List<WikiPage> findByCreateDate(long groupId, long nodeId, Timestamp createDate, boolean before, int start, int end)
           
abstract  List<WikiPage> findByNoAssets()
           
abstract  WikiPage findByResourcePrimKey(long resourcePrimKey)
           
 

Method Detail

countByCreateDate

int countByCreateDate(long groupId,
                      long nodeId,
                      Date createDate,
                      boolean before)
                      throws SystemException
Throws:
SystemException

countByCreateDate

int countByCreateDate(long groupId,
                      long nodeId,
                      Timestamp createDate,
                      boolean before)
                      throws SystemException
Throws:
SystemException

filterCountByCreateDate

int filterCountByCreateDate(long groupId,
                            long nodeId,
                            Date createDate,
                            boolean before)
                            throws SystemException
Throws:
SystemException

filterCountByCreateDate

int filterCountByCreateDate(long groupId,
                            long nodeId,
                            Timestamp createDate,
                            boolean before)
                            throws SystemException
Throws:
SystemException

filterFindByCreateDate

List<WikiPage> filterFindByCreateDate(long groupId,
                                      long nodeId,
                                      Date createDate,
                                      boolean before,
                                      int start,
                                      int end)
                                      throws SystemException
Throws:
SystemException

filterFindByCreateDate

List<WikiPage> filterFindByCreateDate(long groupId,
                                      long nodeId,
                                      Timestamp createDate,
                                      boolean before,
                                      int start,
                                      int end)
                                      throws SystemException
Throws:
SystemException

findByResourcePrimKey

WikiPage findByResourcePrimKey(long resourcePrimKey)
                               throws SystemException,
                                      NoSuchPageException
Throws:
SystemException
NoSuchPageException

findByCreateDate

List<WikiPage> findByCreateDate(long groupId,
                                long nodeId,
                                Date createDate,
                                boolean before,
                                int start,
                                int end)
                                throws SystemException
Throws:
SystemException

findByCreateDate

List<WikiPage> findByCreateDate(long groupId,
                                long nodeId,
                                Timestamp createDate,
                                boolean before,
                                int start,
                                int end)
                                throws SystemException
Throws:
SystemException

findByNoAssets

List<WikiPage> findByNoAssets()
                              throws SystemException
Throws:
SystemException

Liferay 6.2.0