001
014
015 package com.liferay.portlet.messageboards.service.persistence;
016
017
020 public interface MBMessageFinder {
021 public int countByC_T(java.util.Date createDate, long threadId)
022 throws com.liferay.portal.kernel.exception.SystemException;
023
024 public int countByG_U_C_S(long groupId, long userId, long[] categoryIds,
025 int status) throws com.liferay.portal.kernel.exception.SystemException;
026
027 public int countByG_U_C_A_S(long groupId, long userId, long[] categoryIds,
028 boolean anonymous, int status)
029 throws com.liferay.portal.kernel.exception.SystemException;
030
031 public int filterCountByG_U_C_S(long groupId, long userId,
032 long[] categoryIds, int status)
033 throws com.liferay.portal.kernel.exception.SystemException;
034
035 public int filterCountByG_U_C_A_S(long groupId, long userId,
036 long[] categoryIds, boolean anonymous, int status)
037 throws com.liferay.portal.kernel.exception.SystemException;
038
039 public java.util.List<java.lang.Long> filterFindByG_U_C_S(long groupId,
040 long userId, long[] categoryIds, int status, int start, int end)
041 throws com.liferay.portal.kernel.exception.SystemException;
042
043 public java.util.List<java.lang.Long> filterFindByG_U_C_A_S(long groupId,
044 long userId, long[] categoryIds, boolean anonymous, int status,
045 int start, int end)
046 throws com.liferay.portal.kernel.exception.SystemException;
047
048 public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByNoAssets()
049 throws com.liferay.portal.kernel.exception.SystemException;
050
051 public java.util.List<java.lang.Long> findByG_U_C_S(long groupId,
052 long userId, long[] categoryIds, int status, int start, int end)
053 throws com.liferay.portal.kernel.exception.SystemException;
054
055 public java.util.List<java.lang.Long> findByG_U_C_A_S(long groupId,
056 long userId, long[] categoryIds, boolean anonymous, int status,
057 int start, int end)
058 throws com.liferay.portal.kernel.exception.SystemException;
059 }