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