1
19
20 package com.liferay.portlet.messageboards.service.persistence;
21
22
28 public class MBMessageFinderUtil {
29 public static int countByG_U(long groupId, long userId)
30 throws com.liferay.portal.SystemException {
31 return getFinder().countByG_U(groupId, userId);
32 }
33
34 public static int countByG_U_A(long groupId, long userId, boolean anonymous)
35 throws com.liferay.portal.SystemException {
36 return getFinder().countByG_U_A(groupId, userId, anonymous);
37 }
38
39 public static java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByNoAssets()
40 throws com.liferay.portal.SystemException {
41 return getFinder().findByNoAssets();
42 }
43
44 public static java.util.List<Long> findByG_U(long groupId, long userId,
45 int start, int end) throws com.liferay.portal.SystemException {
46 return getFinder().findByG_U(groupId, userId, start, end);
47 }
48
49 public static java.util.List<Long> findByG_U_A(long groupId, long userId,
50 boolean anonymous, int start, int end)
51 throws com.liferay.portal.SystemException {
52 return getFinder().findByG_U_A(groupId, userId, anonymous, start, end);
53 }
54
55 public static MBMessageFinder getFinder() {
56 return _finder;
57 }
58
59 public void setFinder(MBMessageFinder finder) {
60 _finder = finder;
61 }
62
63 private static MBMessageFinder _finder;
64 }