Liferay 7.0-ce-m3

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

All Known Implementing Classes:
WikiPageFinderImpl

@ProviderType
public interface WikiPageFinder

ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

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

Method Detail

countByCreateDate

int countByCreateDate(long groupId,
                      long nodeId,
                      Date createDate,
                      boolean before)

countByCreateDate

int countByCreateDate(long groupId,
                      long nodeId,
                      Timestamp createDate,
                      boolean before)

filterCountByCreateDate

int filterCountByCreateDate(long groupId,
                            long nodeId,
                            Date createDate,
                            boolean before)

filterCountByCreateDate

int filterCountByCreateDate(long groupId,
                            long nodeId,
                            Timestamp createDate,
                            boolean before)

filterFindByCreateDate

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

filterFindByCreateDate

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

findByResourcePrimKey

WikiPage findByResourcePrimKey(long resourcePrimKey)
                               throws NoSuchPageException
Throws:
NoSuchPageException

findByCreateDate

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

findByCreateDate

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

findByNoAssets

List<WikiPage> findByNoAssets()

Liferay 7.0-ce-m3