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_MD_C_S(long groupId, long userId,
036 java.util.Date modifiedDate, long[] categoryIds, int status)
037 throws com.liferay.portal.kernel.exception.SystemException;
038
039 public int filterCountByG_U_C_A_S(long groupId, long userId,
040 long[] categoryIds, boolean anonymous, int status)
041 throws com.liferay.portal.kernel.exception.SystemException;
042
043 public java.util.List<java.lang.Long> filterFindByG_U_C_S(long groupId,
044 long userId, long[] categoryIds, int status, int start, int end)
045 throws com.liferay.portal.kernel.exception.SystemException;
046
047 public java.util.List<java.lang.Long> filterFindByG_U_MD_C_S(long groupId,
048 long userId, java.util.Date modifiedDate, long[] categoryIds,
049 int status, int start, int end)
050 throws com.liferay.portal.kernel.exception.SystemException;
051
052 public java.util.List<java.lang.Long> filterFindByG_U_C_A_S(long groupId,
053 long userId, long[] categoryIds, boolean anonymous, int status,
054 int start, int end)
055 throws com.liferay.portal.kernel.exception.SystemException;
056
057 public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByNoAssets()
058 throws com.liferay.portal.kernel.exception.SystemException;
059
060 public java.util.List<java.lang.Long> findByG_U_C_S(long groupId,
061 long userId, long[] categoryIds, int status, int start, int end)
062 throws com.liferay.portal.kernel.exception.SystemException;
063
064 public java.util.List<java.lang.Long> findByG_U_C_A_S(long groupId,
065 long userId, long[] categoryIds, boolean anonymous, int status,
066 int start, int end)
067 throws com.liferay.portal.kernel.exception.SystemException;
068 }