1
19
20 package com.liferay.portlet.messageboards.service.persistence;
21
22
28 public interface MBMessageFinder {
29 public int countByCategoryIds(java.util.List<Long> categoryIds)
30 throws com.liferay.portal.SystemException;
31
32 public int countByGroupId(long groupId)
33 throws com.liferay.portal.SystemException;
34
35 public int countByG_U(long groupId, long userId)
36 throws com.liferay.portal.SystemException;
37
38 public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByGroupId(
39 long groupId, int start, int end)
40 throws com.liferay.portal.SystemException;
41
42 public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByGroupId(
43 long groupId, int start, int end,
44 com.liferay.portal.kernel.util.OrderByComparator obc)
45 throws com.liferay.portal.SystemException;
46
47 public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByNoAssets()
48 throws com.liferay.portal.SystemException;
49
50 public com.liferay.portlet.messageboards.model.MBMessage findByUuid_G(
51 java.lang.String uuid, long groupId)
52 throws com.liferay.portal.SystemException,
53 com.liferay.portlet.messageboards.NoSuchMessageException;
54
55 public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByG_U(
56 long groupId, long userId, int start, int end)
57 throws com.liferay.portal.SystemException;
58
59 public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByG_U(
60 long groupId, long userId, int start, int end,
61 com.liferay.portal.kernel.util.OrderByComparator obc)
62 throws com.liferay.portal.SystemException;
63
64 public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByC_C(
65 long classNameId, long classPK)
66 throws com.liferay.portal.SystemException;
67 }