1
14
15 package com.liferay.portlet.messageboards.service.persistence;
16
17
22 public interface MBCategoryFinder {
23 public int countByS_G_U(long groupId, long userId)
24 throws com.liferay.portal.kernel.exception.SystemException;
25
26 public int filterCountByS_G_U(long groupId, long userId)
27 throws com.liferay.portal.kernel.exception.SystemException;
28
29 public java.util.List<com.liferay.portlet.messageboards.model.MBCategory> filterFindByS_G_U(
30 long groupId, long userId, int start, int end)
31 throws com.liferay.portal.kernel.exception.SystemException;
32
33 public java.util.List<com.liferay.portlet.messageboards.model.MBCategory> findByS_G_U(
34 long groupId, long userId, int start, int end)
35 throws com.liferay.portal.kernel.exception.SystemException;
36 }