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