1
19
20 package com.liferay.portlet.messageboards.service.persistence;
21
22
28 public class MBThreadFinderUtil {
29 public static int countByCategoryIds(java.util.List<Long> categoryIds)
30 throws com.liferay.portal.SystemException {
31 return getFinder().countByCategoryIds(categoryIds);
32 }
33
34 public static int countByGroupId(long groupId)
35 throws com.liferay.portal.SystemException {
36 return getFinder().countByGroupId(groupId);
37 }
38
39 public static int countByG_U(long groupId, long userId)
40 throws com.liferay.portal.SystemException {
41 return getFinder().countByG_U(groupId, userId);
42 }
43
44 public static int countByS_G_U(long groupId, long userId)
45 throws com.liferay.portal.SystemException {
46 return getFinder().countByS_G_U(groupId, userId);
47 }
48
49 public static java.util.List<com.liferay.portlet.messageboards.model.MBThread> findByGroupId(
50 long groupId, int start, int end)
51 throws com.liferay.portal.SystemException {
52 return getFinder().findByGroupId(groupId, start, end);
53 }
54
55 public static java.util.List<com.liferay.portlet.messageboards.model.MBThread> findByG_U(
56 long groupId, long userId, int start, int end)
57 throws com.liferay.portal.SystemException {
58 return getFinder().findByG_U(groupId, userId, start, end);
59 }
60
61 public static java.util.List<com.liferay.portlet.messageboards.model.MBThread> findByS_G_U(
62 long groupId, long userId, int start, int end)
63 throws com.liferay.portal.SystemException {
64 return getFinder().findByS_G_U(groupId, userId, start, end);
65 }
66
67 public static MBThreadFinder getFinder() {
68 return _finder;
69 }
70
71 public void setFinder(MBThreadFinder finder) {
72 _finder = finder;
73 }
74
75 private static MBThreadFinder _finder;
76 }