1
14
15 package com.liferay.portlet.messageboards.service.persistence;
16
17
22 public interface MBMessageFinder {
23 public int countByCategoryIds(java.util.List<Long> categoryIds)
24 throws com.liferay.portal.SystemException;
25
26 public int countByG_U(long groupId, long userId)
27 throws com.liferay.portal.SystemException;
28
29 public int countByC_T(java.util.Date createDate, long threadId)
30 throws com.liferay.portal.SystemException;
31
32 public int countByG_U_A(long groupId, long userId, boolean anonymous)
33 throws com.liferay.portal.SystemException;
34
35 public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByNoAssets()
36 throws com.liferay.portal.SystemException;
37
38 public java.util.List<Long> findByG_U(long groupId, long userId, int start,
39 int end) throws com.liferay.portal.SystemException;
40
41 public java.util.List<Long> findByG_U_A(long groupId, long userId,
42 boolean anonymous, int start, int end)
43 throws com.liferay.portal.SystemException;
44 }