1
22
23 package com.liferay.portlet.wiki.service.persistence;
24
25
31 public class WikiPageFinderUtil {
32 public static int countByCreateDate(long nodeId, java.util.Date createDate,
33 boolean before) throws com.liferay.portal.SystemException {
34 return getFinder().countByCreateDate(nodeId, createDate, before);
35 }
36
37 public static int countByCreateDate(long nodeId,
38 java.sql.Timestamp createDate, boolean before)
39 throws com.liferay.portal.SystemException {
40 return getFinder().countByCreateDate(nodeId, createDate, before);
41 }
42
43 public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByCreateDate(
44 long nodeId, java.util.Date createDate, boolean before, int begin,
45 int end) throws com.liferay.portal.SystemException {
46 return getFinder()
47 .findByCreateDate(nodeId, createDate, before, begin, end);
48 }
49
50 public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByCreateDate(
51 long nodeId, java.sql.Timestamp createDate, boolean before, int begin,
52 int end) throws com.liferay.portal.SystemException {
53 return getFinder()
54 .findByCreateDate(nodeId, createDate, before, begin, end);
55 }
56
57 public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByNoAssets()
58 throws com.liferay.portal.SystemException {
59 return getFinder().findByNoAssets();
60 }
61
62 public static com.liferay.portlet.wiki.model.WikiPage findByUuid_G(
63 java.lang.String uuid, long groupId)
64 throws com.liferay.portal.SystemException,
65 com.liferay.portlet.wiki.NoSuchPageException {
66 return getFinder().findByUuid_G(uuid, groupId);
67 }
68
69 public static WikiPageFinder getFinder() {
70 return _getUtil()._finder;
71 }
72
73 public void setFinder(WikiPageFinder finder) {
74 _finder = finder;
75 }
76
77 private static WikiPageFinderUtil _getUtil() {
78 if (_util == null) {
79 _util = (WikiPageFinderUtil)com.liferay.portal.kernel.bean.BeanLocatorUtil.locate(_UTIL);
80 }
81
82 return _util;
83 }
84
85 private static final String _UTIL = WikiPageFinderUtil.class.getName();
86 private static WikiPageFinderUtil _util;
87 private WikiPageFinder _finder;
88 }