Liferay 6.0.5

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

All Known Implementing Classes:
WikiPageFinderImpl

public interface WikiPageFinder


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

Method Detail

countByCreateDate

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

countByCreateDate

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

findByResourcePrimKey

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

findByCreateDate

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

findByCreateDate

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

findByNoAssets

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

Liferay 6.0.5