001
014
015 package com.liferay.portlet.messageboards.service.persistence;
016
017
020 public interface MBCategoryFinder {
021 public int countByS_G_U_P(long groupId, long userId,
022 long[] parentCategoryIds,
023 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
024 throws com.liferay.portal.kernel.exception.SystemException;
025
026 public int filterCountByS_G_U_P(long groupId, long userId,
027 long[] parentCategoryIds,
028 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
029 throws com.liferay.portal.kernel.exception.SystemException;
030
031 public java.util.List<com.liferay.portlet.messageboards.model.MBCategory> filterFindByS_G_U_P(
032 long groupId, long userId, long[] parentCategoryIds,
033 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
034 throws com.liferay.portal.kernel.exception.SystemException;
035
036 public java.util.List<com.liferay.portlet.messageboards.model.MBCategory> findByS_G_U_P(
037 long groupId, long userId, long[] parentCategoryIds,
038 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
039 throws com.liferay.portal.kernel.exception.SystemException;
040 }