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 com.liferay.portlet.wiki.model.WikiPage findByResourcePrimKey(
41 long resourcePrimKey)
42 throws com.liferay.portal.SystemException,
43 com.liferay.portlet.wiki.NoSuchPageException {
44 return getFinder().findByResourcePrimKey(resourcePrimKey);
45 }
46
47 public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByCreateDate(
48 long nodeId, java.util.Date 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> findByCreateDate(
55 long nodeId, java.sql.Timestamp createDate, boolean before, int start,
56 int end) throws com.liferay.portal.SystemException {
57 return getFinder()
58 .findByCreateDate(nodeId, createDate, before, start, end);
59 }
60
61 public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByNoAssets()
62 throws com.liferay.portal.SystemException {
63 return getFinder().findByNoAssets();
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 }