1
19
20 package com.liferay.portlet.wiki.service.persistence;
21
22
28 public class WikiPageFinderUtil {
29 public static int countByCreateDate(long nodeId, java.util.Date createDate,
30 boolean before) throws com.liferay.portal.SystemException {
31 return getFinder().countByCreateDate(nodeId, createDate, before);
32 }
33
34 public static int countByCreateDate(long nodeId,
35 java.sql.Timestamp createDate, boolean before)
36 throws com.liferay.portal.SystemException {
37 return getFinder().countByCreateDate(nodeId, createDate, before);
38 }
39
40 public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByCreateDate(
41 long nodeId, java.util.Date createDate, boolean before, int start,
42 int end) throws com.liferay.portal.SystemException {
43 return getFinder()
44 .findByCreateDate(nodeId, createDate, before, start, end);
45 }
46
47 public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByCreateDate(
48 long nodeId, java.sql.Timestamp createDate, boolean before, int start,
49 int end) throws com.liferay.portal.SystemException {
50 return getFinder()
51 .findByCreateDate(nodeId, createDate, before, start, end);
52 }
53
54 public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByNoAssets()
55 throws com.liferay.portal.SystemException {
56 return getFinder().findByNoAssets();
57 }
58
59 public static com.liferay.portlet.wiki.model.WikiPage findByUuid_G(
60 java.lang.String uuid, long groupId)
61 throws com.liferay.portal.SystemException,
62 com.liferay.portlet.wiki.NoSuchPageException {
63 return getFinder().findByUuid_G(uuid, groupId);
64 }
65
66 public static WikiPageFinder getFinder() {
67 return _finder;
68 }
69
70 public void setFinder(WikiPageFinder finder) {
71 _finder = finder;
72 }
73
74 private static WikiPageFinder _finder;
75 }