Liferay 6.0.5

com.liferay.portlet.messageboards.service.persistence
Class MBMessageUtil

java.lang.Object
  extended by com.liferay.portlet.messageboards.service.persistence.MBMessageUtil

public class MBMessageUtil
extends Object

The persistence utility for the message-boards message service. This utility wraps MBMessagePersistenceImpl and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.

Never modify this class directly. Modify service.xml and rerun ServiceBuilder to regenerate this class.

Caching information and settings can be found in portal.properties

See Also:
MBMessagePersistence, MBMessagePersistenceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Constructor Summary
MBMessageUtil()
           
 
Method Summary
static void cacheResult(List<MBMessage> mbMessages)
          Caches the message-boards messages in the entity cache if it is enabled.
static void cacheResult(MBMessage mbMessage)
          Caches the message-boards message in the entity cache if it is enabled.
static void clearCache()
           
static void clearCache(MBMessage mbMessage)
           
static int countAll()
          Counts all the message-boards messages.
static int countByC_C_S(long classNameId, long classPK, int status)
          Counts all the message-boards messages where classNameId = ? and classPK = ? and status = ?.
static int countByC_C(long classNameId, long classPK)
          Counts all the message-boards messages where classNameId = ? and classPK = ?.
static int countByC_S(long companyId, int status)
          Counts all the message-boards messages where companyId = ? and status = ?.
static int countByCompanyId(long companyId)
          Counts all the message-boards messages where companyId = ?.
static int countByG_C_S(long groupId, long categoryId, int status)
          Counts all the message-boards messages where groupId = ? and categoryId = ? and status = ?.
static int countByG_C_T_S(long groupId, long categoryId, long threadId, int status)
          Counts all the message-boards messages where groupId = ? and categoryId = ? and threadId = ? and status = ?.
static int countByG_C_T(long groupId, long categoryId, long threadId)
          Counts all the message-boards messages where groupId = ? and categoryId = ? and threadId = ?.
static int countByG_C(long groupId, long categoryId)
          Counts all the message-boards messages where groupId = ? and categoryId = ?.
static int countByG_S(long groupId, int status)
          Counts all the message-boards messages where groupId = ? and status = ?.
static int countByG_U_S(long groupId, long userId, int status)
          Counts all the message-boards messages where groupId = ? and userId = ? and status = ?.
static int countByG_U(long groupId, long userId)
          Counts all the message-boards messages where groupId = ? and userId = ?.
static int countByGroupId(long groupId)
          Counts all the message-boards messages where groupId = ?.
static int countByT_P(long threadId, long parentMessageId)
          Counts all the message-boards messages where threadId = ? and parentMessageId = ?.
static int countByT_S(long threadId, int status)
          Counts all the message-boards messages where threadId = ? and status = ?.
static int countByThreadId(long threadId)
          Counts all the message-boards messages where threadId = ?.
static int countByThreadReplies(long threadId)
          Counts all the message-boards messages where threadId = ?.
static int countByTR_S(long threadId, int status)
          Counts all the message-boards messages where threadId = ? and status = ?.
static int countByUserId(long userId)
          Counts all the message-boards messages where userId = ?.
static int countByUUID_G(String uuid, long groupId)
          Counts all the message-boards messages where uuid = ? and groupId = ?.
static int countByUuid(String uuid)
          Counts all the message-boards messages where uuid = ?.
 long countWithDynamicQuery(DynamicQuery dynamicQuery)
           
static MBMessage create(long messageId)
          Creates a new message-boards message with the primary key.
static MBMessage fetchByPrimaryKey(long messageId)
          Finds the message-boards message with the primary key or returns null if it could not be found.
static MBMessage fetchByUUID_G(String uuid, long groupId)
          Finds the message-boards message where uuid = ? and groupId = ? or returns null if it could not be found.
static MBMessage fetchByUUID_G(String uuid, long groupId, boolean retrieveFromCache)
          Finds the message-boards message where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.
static int filterCountByG_C_S(long groupId, long categoryId, int status)
          Filters by the user's permissions and counts all the message-boards messages where groupId = ? and categoryId = ? and status = ?.
static int filterCountByG_C_T_S(long groupId, long categoryId, long threadId, int status)
          Filters by the user's permissions and counts all the message-boards messages where groupId = ? and categoryId = ? and threadId = ? and status = ?.
static int filterCountByG_C_T(long groupId, long categoryId, long threadId)
          Filters by the user's permissions and counts all the message-boards messages where groupId = ? and categoryId = ? and threadId = ?.
static int filterCountByG_C(long groupId, long categoryId)
          Filters by the user's permissions and counts all the message-boards messages where groupId = ? and categoryId = ?.
static int filterCountByG_S(long groupId, int status)
          Filters by the user's permissions and counts all the message-boards messages where groupId = ? and status = ?.
static int filterCountByG_U_S(long groupId, long userId, int status)
          Filters by the user's permissions and counts all the message-boards messages where groupId = ? and userId = ? and status = ?.
static int filterCountByG_U(long groupId, long userId)
          Filters by the user's permissions and counts all the message-boards messages where groupId = ? and userId = ?.
static int filterCountByGroupId(long groupId)
          Filters by the user's permissions and counts all the message-boards messages where groupId = ?.
static List<MBMessage> filterFindByG_C_S(long groupId, long categoryId, int status)
          Filters by the user's permissions and finds all the message-boards messages where groupId = ? and categoryId = ? and status = ?.
static List<MBMessage> filterFindByG_C_S(long groupId, long categoryId, int status, int start, int end)
          Filters by the user's permissions and finds a range of all the message-boards messages where groupId = ? and categoryId = ? and status = ?.
static List<MBMessage> filterFindByG_C_S(long groupId, long categoryId, int status, int start, int end, OrderByComparator orderByComparator)
          Filters by the user's permissions and finds an ordered range of all the message-boards messages where groupId = ? and categoryId = ? and status = ?.
static List<MBMessage> filterFindByG_C_T_S(long groupId, long categoryId, long threadId, int status)
          Filters by the user's permissions and finds all the message-boards messages where groupId = ? and categoryId = ? and threadId = ? and status = ?.
static List<MBMessage> filterFindByG_C_T_S(long groupId, long categoryId, long threadId, int status, int start, int end)
          Filters by the user's permissions and finds a range of all the message-boards messages where groupId = ? and categoryId = ? and threadId = ? and status = ?.
static List<MBMessage> filterFindByG_C_T_S(long groupId, long categoryId, long threadId, int status, int start, int end, OrderByComparator orderByComparator)
          Filters by the user's permissions and finds an ordered range of all the message-boards messages where groupId = ? and categoryId = ? and threadId = ? and status = ?.
static List<MBMessage> filterFindByG_C_T(long groupId, long categoryId, long threadId)
          Filters by the user's permissions and finds all the message-boards messages where groupId = ? and categoryId = ? and threadId = ?.
static List<MBMessage> filterFindByG_C_T(long groupId, long categoryId, long threadId, int start, int end)
          Filters by the user's permissions and finds a range of all the message-boards messages where groupId = ? and categoryId = ? and threadId = ?.
static List<MBMessage> filterFindByG_C_T(long groupId, long categoryId, long threadId, int start, int end, OrderByComparator orderByComparator)
          Filters by the user's permissions and finds an ordered range of all the message-boards messages where groupId = ? and categoryId = ? and threadId = ?.
static List<MBMessage> filterFindByG_C(long groupId, long categoryId)
          Filters by the user's permissions and finds all the message-boards messages where groupId = ? and categoryId = ?.
static List<MBMessage> filterFindByG_C(long groupId, long categoryId, int start, int end)
          Filters by the user's permissions and finds a range of all the message-boards messages where groupId = ? and categoryId = ?.
static List<MBMessage> filterFindByG_C(long groupId, long categoryId, int start, int end, OrderByComparator orderByComparator)
          Filters by the user's permissions and finds an ordered range of all the message-boards messages where groupId = ? and categoryId = ?.
static List<MBMessage> filterFindByG_S(long groupId, int status)
          Filters by the user's permissions and finds all the message-boards messages where groupId = ? and status = ?.
static List<MBMessage> filterFindByG_S(long groupId, int status, int start, int end)
          Filters by the user's permissions and finds a range of all the message-boards messages where groupId = ? and status = ?.
static List<MBMessage> filterFindByG_S(long groupId, int status, int start, int end, OrderByComparator orderByComparator)
          Filters by the user's permissions and finds an ordered range of all the message-boards messages where groupId = ? and status = ?.
static List<MBMessage> filterFindByG_U_S(long groupId, long userId, int status)
          Filters by the user's permissions and finds all the message-boards messages where groupId = ? and userId = ? and status = ?.
static List<MBMessage> filterFindByG_U_S(long groupId, long userId, int status, int start, int end)
          Filters by the user's permissions and finds a range of all the message-boards messages where groupId = ? and userId = ? and status = ?.
static List<MBMessage> filterFindByG_U_S(long groupId, long userId, int status, int start, int end, OrderByComparator orderByComparator)
          Filters by the user's permissions and finds an ordered range of all the message-boards messages where groupId = ? and userId = ? and status = ?.
static List<MBMessage> filterFindByG_U(long groupId, long userId)
          Filters by the user's permissions and finds all the message-boards messages where groupId = ? and userId = ?.
static List<MBMessage> filterFindByG_U(long groupId, long userId, int start, int end)
          Filters by the user's permissions and finds a range of all the message-boards messages where groupId = ? and userId = ?.
static List<MBMessage> filterFindByG_U(long groupId, long userId, int start, int end, OrderByComparator orderByComparator)
          Filters by the user's permissions and finds an ordered range of all the message-boards messages where groupId = ? and userId = ?.
static List<MBMessage> filterFindByGroupId(long groupId)
          Filters by the user's permissions and finds all the message-boards messages where groupId = ?.
static List<MBMessage> filterFindByGroupId(long groupId, int start, int end)
          Filters by the user's permissions and finds a range of all the message-boards messages where groupId = ?.
static List<MBMessage> filterFindByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator)
          Filters by the user's permissions and finds an ordered range of all the message-boards messages where groupId = ?.
static List<MBMessage> findAll()
          Finds all the message-boards messages.
static List<MBMessage> findAll(int start, int end)
          Finds a range of all the message-boards messages.
static List<MBMessage> findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message-boards messages.
static MBMessage findByC_C_First(long classNameId, long classPK, OrderByComparator orderByComparator)
          Finds the first message-boards message in the ordered set where classNameId = ? and classPK = ?.
static MBMessage findByC_C_Last(long classNameId, long classPK, OrderByComparator orderByComparator)
          Finds the last message-boards message in the ordered set where classNameId = ? and classPK = ?.
static MBMessage[] findByC_C_PrevAndNext(long messageId, long classNameId, long classPK, OrderByComparator orderByComparator)
          Finds the message-boards messages before and after the current message-boards message in the ordered set where classNameId = ? and classPK = ?.
static MBMessage findByC_C_S_First(long classNameId, long classPK, int status, OrderByComparator orderByComparator)
          Finds the first message-boards message in the ordered set where classNameId = ? and classPK = ? and status = ?.
static MBMessage findByC_C_S_Last(long classNameId, long classPK, int status, OrderByComparator orderByComparator)
          Finds the last message-boards message in the ordered set where classNameId = ? and classPK = ? and status = ?.
static MBMessage[] findByC_C_S_PrevAndNext(long messageId, long classNameId, long classPK, int status, OrderByComparator orderByComparator)
          Finds the message-boards messages before and after the current message-boards message in the ordered set where classNameId = ? and classPK = ? and status = ?.
static List<MBMessage> findByC_C_S(long classNameId, long classPK, int status)
          Finds all the message-boards messages where classNameId = ? and classPK = ? and status = ?.
static List<MBMessage> findByC_C_S(long classNameId, long classPK, int status, int start, int end)
          Finds a range of all the message-boards messages where classNameId = ? and classPK = ? and status = ?.
static List<MBMessage> findByC_C_S(long classNameId, long classPK, int status, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message-boards messages where classNameId = ? and classPK = ? and status = ?.
static List<MBMessage> findByC_C(long classNameId, long classPK)
          Finds all the message-boards messages where classNameId = ? and classPK = ?.
static List<MBMessage> findByC_C(long classNameId, long classPK, int start, int end)
          Finds a range of all the message-boards messages where classNameId = ? and classPK = ?.
static List<MBMessage> findByC_C(long classNameId, long classPK, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message-boards messages where classNameId = ? and classPK = ?.
static MBMessage findByC_S_First(long companyId, int status, OrderByComparator orderByComparator)
          Finds the first message-boards message in the ordered set where companyId = ? and status = ?.
static MBMessage findByC_S_Last(long companyId, int status, OrderByComparator orderByComparator)
          Finds the last message-boards message in the ordered set where companyId = ? and status = ?.
static MBMessage[] findByC_S_PrevAndNext(long messageId, long companyId, int status, OrderByComparator orderByComparator)
          Finds the message-boards messages before and after the current message-boards message in the ordered set where companyId = ? and status = ?.
static List<MBMessage> findByC_S(long companyId, int status)
          Finds all the message-boards messages where companyId = ? and status = ?.
static List<MBMessage> findByC_S(long companyId, int status, int start, int end)
          Finds a range of all the message-boards messages where companyId = ? and status = ?.
static List<MBMessage> findByC_S(long companyId, int status, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message-boards messages where companyId = ? and status = ?.
static MBMessage findByCompanyId_First(long companyId, OrderByComparator orderByComparator)
          Finds the first message-boards message in the ordered set where companyId = ?.
static MBMessage findByCompanyId_Last(long companyId, OrderByComparator orderByComparator)
          Finds the last message-boards message in the ordered set where companyId = ?.
static MBMessage[] findByCompanyId_PrevAndNext(long messageId, long companyId, OrderByComparator orderByComparator)
          Finds the message-boards messages before and after the current message-boards message in the ordered set where companyId = ?.
static List<MBMessage> findByCompanyId(long companyId)
          Finds all the message-boards messages where companyId = ?.
static List<MBMessage> findByCompanyId(long companyId, int start, int end)
          Finds a range of all the message-boards messages where companyId = ?.
static List<MBMessage> findByCompanyId(long companyId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message-boards messages where companyId = ?.
static MBMessage findByG_C_First(long groupId, long categoryId, OrderByComparator orderByComparator)
          Finds the first message-boards message in the ordered set where groupId = ? and categoryId = ?.
static MBMessage findByG_C_Last(long groupId, long categoryId, OrderByComparator orderByComparator)
          Finds the last message-boards message in the ordered set where groupId = ? and categoryId = ?.
static MBMessage[] findByG_C_PrevAndNext(long messageId, long groupId, long categoryId, OrderByComparator orderByComparator)
          Finds the message-boards messages before and after the current message-boards message in the ordered set where groupId = ? and categoryId = ?.
static MBMessage findByG_C_S_First(long groupId, long categoryId, int status, OrderByComparator orderByComparator)
          Finds the first message-boards message in the ordered set where groupId = ? and categoryId = ? and status = ?.
static MBMessage findByG_C_S_Last(long groupId, long categoryId, int status, OrderByComparator orderByComparator)
          Finds the last message-boards message in the ordered set where groupId = ? and categoryId = ? and status = ?.
static MBMessage[] findByG_C_S_PrevAndNext(long messageId, long groupId, long categoryId, int status, OrderByComparator orderByComparator)
          Finds the message-boards messages before and after the current message-boards message in the ordered set where groupId = ? and categoryId = ? and status = ?.
static List<MBMessage> findByG_C_S(long groupId, long categoryId, int status)
          Finds all the message-boards messages where groupId = ? and categoryId = ? and status = ?.
static List<MBMessage> findByG_C_S(long groupId, long categoryId, int status, int start, int end)
          Finds a range of all the message-boards messages where groupId = ? and categoryId = ? and status = ?.
static List<MBMessage> findByG_C_S(long groupId, long categoryId, int status, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message-boards messages where groupId = ? and categoryId = ? and status = ?.
static MBMessage findByG_C_T_First(long groupId, long categoryId, long threadId, OrderByComparator orderByComparator)
          Finds the first message-boards message in the ordered set where groupId = ? and categoryId = ? and threadId = ?.
static MBMessage findByG_C_T_Last(long groupId, long categoryId, long threadId, OrderByComparator orderByComparator)
          Finds the last message-boards message in the ordered set where groupId = ? and categoryId = ? and threadId = ?.
static MBMessage[] findByG_C_T_PrevAndNext(long messageId, long groupId, long categoryId, long threadId, OrderByComparator orderByComparator)
          Finds the message-boards messages before and after the current message-boards message in the ordered set where groupId = ? and categoryId = ? and threadId = ?.
static MBMessage findByG_C_T_S_First(long groupId, long categoryId, long threadId, int status, OrderByComparator orderByComparator)
          Finds the first message-boards message in the ordered set where groupId = ? and categoryId = ? and threadId = ? and status = ?.
static MBMessage findByG_C_T_S_Last(long groupId, long categoryId, long threadId, int status, OrderByComparator orderByComparator)
          Finds the last message-boards message in the ordered set where groupId = ? and categoryId = ? and threadId = ? and status = ?.
static MBMessage[] findByG_C_T_S_PrevAndNext(long messageId, long groupId, long categoryId, long threadId, int status, OrderByComparator orderByComparator)
          Finds the message-boards messages before and after the current message-boards message in the ordered set where groupId = ? and categoryId = ? and threadId = ? and status = ?.
static List<MBMessage> findByG_C_T_S(long groupId, long categoryId, long threadId, int status)
          Finds all the message-boards messages where groupId = ? and categoryId = ? and threadId = ? and status = ?.
static List<MBMessage> findByG_C_T_S(long groupId, long categoryId, long threadId, int status, int start, int end)
          Finds a range of all the message-boards messages where groupId = ? and categoryId = ? and threadId = ? and status = ?.
static List<MBMessage> findByG_C_T_S(long groupId, long categoryId, long threadId, int status, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message-boards messages where groupId = ? and categoryId = ? and threadId = ? and status = ?.
static List<MBMessage> findByG_C_T(long groupId, long categoryId, long threadId)
          Finds all the message-boards messages where groupId = ? and categoryId = ? and threadId = ?.
static List<MBMessage> findByG_C_T(long groupId, long categoryId, long threadId, int start, int end)
          Finds a range of all the message-boards messages where groupId = ? and categoryId = ? and threadId = ?.
static List<MBMessage> findByG_C_T(long groupId, long categoryId, long threadId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message-boards messages where groupId = ? and categoryId = ? and threadId = ?.
static List<MBMessage> findByG_C(long groupId, long categoryId)
          Finds all the message-boards messages where groupId = ? and categoryId = ?.
static List<MBMessage> findByG_C(long groupId, long categoryId, int start, int end)
          Finds a range of all the message-boards messages where groupId = ? and categoryId = ?.
static List<MBMessage> findByG_C(long groupId, long categoryId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message-boards messages where groupId = ? and categoryId = ?.
static MBMessage findByG_S_First(long groupId, int status, OrderByComparator orderByComparator)
          Finds the first message-boards message in the ordered set where groupId = ? and status = ?.
static MBMessage findByG_S_Last(long groupId, int status, OrderByComparator orderByComparator)
          Finds the last message-boards message in the ordered set where groupId = ? and status = ?.
static MBMessage[] findByG_S_PrevAndNext(long messageId, long groupId, int status, OrderByComparator orderByComparator)
          Finds the message-boards messages before and after the current message-boards message in the ordered set where groupId = ? and status = ?.
static List<MBMessage> findByG_S(long groupId, int status)
          Finds all the message-boards messages where groupId = ? and status = ?.
static List<MBMessage> findByG_S(long groupId, int status, int start, int end)
          Finds a range of all the message-boards messages where groupId = ? and status = ?.
static List<MBMessage> findByG_S(long groupId, int status, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message-boards messages where groupId = ? and status = ?.
static MBMessage findByG_U_First(long groupId, long userId, OrderByComparator orderByComparator)
          Finds the first message-boards message in the ordered set where groupId = ? and userId = ?.
static MBMessage findByG_U_Last(long groupId, long userId, OrderByComparator orderByComparator)
          Finds the last message-boards message in the ordered set where groupId = ? and userId = ?.
static MBMessage[] findByG_U_PrevAndNext(long messageId, long groupId, long userId, OrderByComparator orderByComparator)
          Finds the message-boards messages before and after the current message-boards message in the ordered set where groupId = ? and userId = ?.
static MBMessage findByG_U_S_First(long groupId, long userId, int status, OrderByComparator orderByComparator)
          Finds the first message-boards message in the ordered set where groupId = ? and userId = ? and status = ?.
static MBMessage findByG_U_S_Last(long groupId, long userId, int status, OrderByComparator orderByComparator)
          Finds the last message-boards message in the ordered set where groupId = ? and userId = ? and status = ?.
static MBMessage[] findByG_U_S_PrevAndNext(long messageId, long groupId, long userId, int status, OrderByComparator orderByComparator)
          Finds the message-boards messages before and after the current message-boards message in the ordered set where groupId = ? and userId = ? and status = ?.
static List<MBMessage> findByG_U_S(long groupId, long userId, int status)
          Finds all the message-boards messages where groupId = ? and userId = ? and status = ?.
static List<MBMessage> findByG_U_S(long groupId, long userId, int status, int start, int end)
          Finds a range of all the message-boards messages where groupId = ? and userId = ? and status = ?.
static List<MBMessage> findByG_U_S(long groupId, long userId, int status, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message-boards messages where groupId = ? and userId = ? and status = ?.
static List<MBMessage> findByG_U(long groupId, long userId)
          Finds all the message-boards messages where groupId = ? and userId = ?.
static List<MBMessage> findByG_U(long groupId, long userId, int start, int end)
          Finds a range of all the message-boards messages where groupId = ? and userId = ?.
static List<MBMessage> findByG_U(long groupId, long userId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message-boards messages where groupId = ? and userId = ?.
static MBMessage findByGroupId_First(long groupId, OrderByComparator orderByComparator)
          Finds the first message-boards message in the ordered set where groupId = ?.
static MBMessage findByGroupId_Last(long groupId, OrderByComparator orderByComparator)
          Finds the last message-boards message in the ordered set where groupId = ?.
static MBMessage[] findByGroupId_PrevAndNext(long messageId, long groupId, OrderByComparator orderByComparator)
          Finds the message-boards messages before and after the current message-boards message in the ordered set where groupId = ?.
static List<MBMessage> findByGroupId(long groupId)
          Finds all the message-boards messages where groupId = ?.
static List<MBMessage> findByGroupId(long groupId, int start, int end)
          Finds a range of all the message-boards messages where groupId = ?.
static List<MBMessage> findByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message-boards messages where groupId = ?.
static MBMessage findByPrimaryKey(long messageId)
          Finds the message-boards message with the primary key or throws a NoSuchMessageException if it could not be found.
static MBMessage findByT_P_First(long threadId, long parentMessageId, OrderByComparator orderByComparator)
          Finds the first message-boards message in the ordered set where threadId = ? and parentMessageId = ?.
static MBMessage findByT_P_Last(long threadId, long parentMessageId, OrderByComparator orderByComparator)
          Finds the last message-boards message in the ordered set where threadId = ? and parentMessageId = ?.
static MBMessage[] findByT_P_PrevAndNext(long messageId, long threadId, long parentMessageId, OrderByComparator orderByComparator)
          Finds the message-boards messages before and after the current message-boards message in the ordered set where threadId = ? and parentMessageId = ?.
static List<MBMessage> findByT_P(long threadId, long parentMessageId)
          Finds all the message-boards messages where threadId = ? and parentMessageId = ?.
static List<MBMessage> findByT_P(long threadId, long parentMessageId, int start, int end)
          Finds a range of all the message-boards messages where threadId = ? and parentMessageId = ?.
static List<MBMessage> findByT_P(long threadId, long parentMessageId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message-boards messages where threadId = ? and parentMessageId = ?.
static MBMessage findByT_S_First(long threadId, int status, OrderByComparator orderByComparator)
          Finds the first message-boards message in the ordered set where threadId = ? and status = ?.
static MBMessage findByT_S_Last(long threadId, int status, OrderByComparator orderByComparator)
          Finds the last message-boards message in the ordered set where threadId = ? and status = ?.
static MBMessage[] findByT_S_PrevAndNext(long messageId, long threadId, int status, OrderByComparator orderByComparator)
          Finds the message-boards messages before and after the current message-boards message in the ordered set where threadId = ? and status = ?.
static List<MBMessage> findByT_S(long threadId, int status)
          Finds all the message-boards messages where threadId = ? and status = ?.
static List<MBMessage> findByT_S(long threadId, int status, int start, int end)
          Finds a range of all the message-boards messages where threadId = ? and status = ?.
static List<MBMessage> findByT_S(long threadId, int status, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message-boards messages where threadId = ? and status = ?.
static MBMessage findByThreadId_First(long threadId, OrderByComparator orderByComparator)
          Finds the first message-boards message in the ordered set where threadId = ?.
static MBMessage findByThreadId_Last(long threadId, OrderByComparator orderByComparator)
          Finds the last message-boards message in the ordered set where threadId = ?.
static MBMessage[] findByThreadId_PrevAndNext(long messageId, long threadId, OrderByComparator orderByComparator)
          Finds the message-boards messages before and after the current message-boards message in the ordered set where threadId = ?.
static List<MBMessage> findByThreadId(long threadId)
          Finds all the message-boards messages where threadId = ?.
static List<MBMessage> findByThreadId(long threadId, int start, int end)
          Finds a range of all the message-boards messages where threadId = ?.
static List<MBMessage> findByThreadId(long threadId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message-boards messages where threadId = ?.
static MBMessage findByThreadReplies_First(long threadId, OrderByComparator orderByComparator)
          Finds the first message-boards message in the ordered set where threadId = ?.
static MBMessage findByThreadReplies_Last(long threadId, OrderByComparator orderByComparator)
          Finds the last message-boards message in the ordered set where threadId = ?.
static MBMessage[] findByThreadReplies_PrevAndNext(long messageId, long threadId, OrderByComparator orderByComparator)
          Finds the message-boards messages before and after the current message-boards message in the ordered set where threadId = ?.
static List<MBMessage> findByThreadReplies(long threadId)
          Finds all the message-boards messages where threadId = ?.
static List<MBMessage> findByThreadReplies(long threadId, int start, int end)
          Finds a range of all the message-boards messages where threadId = ?.
static List<MBMessage> findByThreadReplies(long threadId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message-boards messages where threadId = ?.
static MBMessage findByTR_S_First(long threadId, int status, OrderByComparator orderByComparator)
          Finds the first message-boards message in the ordered set where threadId = ? and status = ?.
static MBMessage findByTR_S_Last(long threadId, int status, OrderByComparator orderByComparator)
          Finds the last message-boards message in the ordered set where threadId = ? and status = ?.
static MBMessage[] findByTR_S_PrevAndNext(long messageId, long threadId, int status, OrderByComparator orderByComparator)
          Finds the message-boards messages before and after the current message-boards message in the ordered set where threadId = ? and status = ?.
static List<MBMessage> findByTR_S(long threadId, int status)
          Finds all the message-boards messages where threadId = ? and status = ?.
static List<MBMessage> findByTR_S(long threadId, int status, int start, int end)
          Finds a range of all the message-boards messages where threadId = ? and status = ?.
static List<MBMessage> findByTR_S(long threadId, int status, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message-boards messages where threadId = ? and status = ?.
static MBMessage findByUserId_First(long userId, OrderByComparator orderByComparator)
          Finds the first message-boards message in the ordered set where userId = ?.
static MBMessage findByUserId_Last(long userId, OrderByComparator orderByComparator)
          Finds the last message-boards message in the ordered set where userId = ?.
static MBMessage[] findByUserId_PrevAndNext(long messageId, long userId, OrderByComparator orderByComparator)
          Finds the message-boards messages before and after the current message-boards message in the ordered set where userId = ?.
static List<MBMessage> findByUserId(long userId)
          Finds all the message-boards messages where userId = ?.
static List<MBMessage> findByUserId(long userId, int start, int end)
          Finds a range of all the message-boards messages where userId = ?.
static List<MBMessage> findByUserId(long userId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message-boards messages where userId = ?.
static MBMessage findByUuid_First(String uuid, OrderByComparator orderByComparator)
          Finds the first message-boards message in the ordered set where uuid = ?.
static MBMessage findByUUID_G(String uuid, long groupId)
          Finds the message-boards message where uuid = ? and groupId = ? or throws a NoSuchMessageException if it could not be found.
static MBMessage findByUuid_Last(String uuid, OrderByComparator orderByComparator)
          Finds the last message-boards message in the ordered set where uuid = ?.
static MBMessage[] findByUuid_PrevAndNext(long messageId, String uuid, OrderByComparator orderByComparator)
          Finds the message-boards messages before and after the current message-boards message in the ordered set where uuid = ?.
static List<MBMessage> findByUuid(String uuid)
          Finds all the message-boards messages where uuid = ?.
static List<MBMessage> findByUuid(String uuid, int start, int end)
          Finds a range of all the message-boards messages where uuid = ?.
static List<MBMessage> findByUuid(String uuid, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message-boards messages where uuid = ?.
static List<MBMessage> findWithDynamicQuery(DynamicQuery dynamicQuery)
           
static List<MBMessage> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
           
static List<MBMessage> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
           
static MBMessagePersistence getPersistence()
           
static MBMessage remove(long messageId)
          Removes the message-boards message with the primary key from the database.
static MBMessage remove(MBMessage mbMessage)
           
static void removeAll()
          Removes all the message-boards messages from the database.
static void removeByC_C_S(long classNameId, long classPK, int status)
          Removes all the message-boards messages where classNameId = ? and classPK = ? and status = ? from the database.
static void removeByC_C(long classNameId, long classPK)
          Removes all the message-boards messages where classNameId = ? and classPK = ? from the database.
static void removeByC_S(long companyId, int status)
          Removes all the message-boards messages where companyId = ? and status = ? from the database.
static void removeByCompanyId(long companyId)
          Removes all the message-boards messages where companyId = ? from the database.
static void removeByG_C_S(long groupId, long categoryId, int status)
          Removes all the message-boards messages where groupId = ? and categoryId = ? and status = ? from the database.
static void removeByG_C_T_S(long groupId, long categoryId, long threadId, int status)
          Removes all the message-boards messages where groupId = ? and categoryId = ? and threadId = ? and status = ? from the database.
static void removeByG_C_T(long groupId, long categoryId, long threadId)
          Removes all the message-boards messages where groupId = ? and categoryId = ? and threadId = ? from the database.
static void removeByG_C(long groupId, long categoryId)
          Removes all the message-boards messages where groupId = ? and categoryId = ? from the database.
static void removeByG_S(long groupId, int status)
          Removes all the message-boards messages where groupId = ? and status = ? from the database.
static void removeByG_U_S(long groupId, long userId, int status)
          Removes all the message-boards messages where groupId = ? and userId = ? and status = ? from the database.
static void removeByG_U(long groupId, long userId)
          Removes all the message-boards messages where groupId = ? and userId = ? from the database.
static void removeByGroupId(long groupId)
          Removes all the message-boards messages where groupId = ? from the database.
static void removeByT_P(long threadId, long parentMessageId)
          Removes all the message-boards messages where threadId = ? and parentMessageId = ? from the database.
static void removeByT_S(long threadId, int status)
          Removes all the message-boards messages where threadId = ? and status = ? from the database.
static void removeByThreadId(long threadId)
          Removes all the message-boards messages where threadId = ? from the database.
static void removeByThreadReplies(long threadId)
          Removes all the message-boards messages where threadId = ? from the database.
static void removeByTR_S(long threadId, int status)
          Removes all the message-boards messages where threadId = ? and status = ? from the database.
static void removeByUserId(long userId)
          Removes all the message-boards messages where userId = ? from the database.
static void removeByUUID_G(String uuid, long groupId)
          Removes the message-boards message where uuid = ? and groupId = ? from the database.
static void removeByUuid(String uuid)
          Removes all the message-boards messages where uuid = ? from the database.
 void setPersistence(MBMessagePersistence persistence)
           
static MBMessage update(MBMessage mbMessage, boolean merge)
           
static MBMessage update(MBMessage mbMessage, boolean merge, ServiceContext serviceContext)
           
static MBMessage updateImpl(MBMessage mbMessage, boolean merge)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MBMessageUtil

public MBMessageUtil()
Method Detail

clearCache

public static void clearCache()
See Also:
BasePersistence.clearCache()

clearCache

public static void clearCache(MBMessage mbMessage)
See Also:
BasePersistence.clearCache(com.liferay.portal.model.BaseModel)

countWithDynamicQuery

public long countWithDynamicQuery(DynamicQuery dynamicQuery)
                           throws SystemException
Throws:
SystemException
See Also:
BasePersistence.countWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<MBMessage> findWithDynamicQuery(DynamicQuery dynamicQuery)
                                            throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<MBMessage> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                   int start,
                                                   int end)
                                            throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)

findWithDynamicQuery

public static List<MBMessage> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                   int start,
                                                   int end,
                                                   OrderByComparator orderByComparator)
                                            throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)

remove

public static MBMessage remove(MBMessage mbMessage)
                        throws SystemException
Throws:
SystemException
See Also:
BasePersistence.remove(com.liferay.portal.model.BaseModel)

update

public static MBMessage update(MBMessage mbMessage,
                               boolean merge)
                        throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean)

update

public static MBMessage update(MBMessage mbMessage,
                               boolean merge,
                               ServiceContext serviceContext)
                        throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean, ServiceContext)

cacheResult

public static void cacheResult(MBMessage mbMessage)
Caches the message-boards message in the entity cache if it is enabled.

Parameters:
mbMessage - the message-boards message to cache

cacheResult

public static void cacheResult(List<MBMessage> mbMessages)
Caches the message-boards messages in the entity cache if it is enabled.

Parameters:
mbMessages - the message-boards messages to cache

create

public static MBMessage create(long messageId)
Creates a new message-boards message with the primary key. Does not add the message-boards message to the database.

Parameters:
messageId - the primary key for the new message-boards message
Returns:
the new message-boards message

remove

public static MBMessage remove(long messageId)
                        throws SystemException,
                               NoSuchMessageException
Removes the message-boards message with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
messageId - the primary key of the message-boards message to remove
Returns:
the message-boards message that was removed
Throws:
NoSuchMessageException - if a message-boards message with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

public static MBMessage updateImpl(MBMessage mbMessage,
                                   boolean merge)
                            throws SystemException
Throws:
SystemException

findByPrimaryKey

public static MBMessage findByPrimaryKey(long messageId)
                                  throws SystemException,
                                         NoSuchMessageException
Finds the message-boards message with the primary key or throws a NoSuchMessageException if it could not be found.

Parameters:
messageId - the primary key of the message-boards message to find
Returns:
the message-boards message
Throws:
NoSuchMessageException - if a message-boards message with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

public static MBMessage fetchByPrimaryKey(long messageId)
                                   throws SystemException
Finds the message-boards message with the primary key or returns null if it could not be found.

Parameters:
messageId - the primary key of the message-boards message to find
Returns:
the message-boards message, or null if a message-boards message with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findByUuid

public static List<MBMessage> findByUuid(String uuid)
                                  throws SystemException
Finds all the message-boards messages where uuid = ?.

Parameters:
uuid - the uuid to search with
Returns:
the matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByUuid

public static List<MBMessage> findByUuid(String uuid,
                                         int start,
                                         int end)
                                  throws SystemException
Finds a range of all the message-boards messages where uuid = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
uuid - the uuid to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByUuid

public static List<MBMessage> findByUuid(String uuid,
                                         int start,
                                         int end,
                                         OrderByComparator orderByComparator)
                                  throws SystemException
Finds an ordered range of all the message-boards messages where uuid = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
uuid - the uuid to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByUuid_First

public static MBMessage findByUuid_First(String uuid,
                                         OrderByComparator orderByComparator)
                                  throws SystemException,
                                         NoSuchMessageException
Finds the first message-boards message in the ordered set where uuid = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
uuid - the uuid to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByUuid_Last

public static MBMessage findByUuid_Last(String uuid,
                                        OrderByComparator orderByComparator)
                                 throws SystemException,
                                        NoSuchMessageException
Finds the last message-boards message in the ordered set where uuid = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
uuid - the uuid to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByUuid_PrevAndNext

public static MBMessage[] findByUuid_PrevAndNext(long messageId,
                                                 String uuid,
                                                 OrderByComparator orderByComparator)
                                          throws SystemException,
                                                 NoSuchMessageException
Finds the message-boards messages before and after the current message-boards message in the ordered set where uuid = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
messageId - the primary key of the current message-boards message
uuid - the uuid to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next message-boards message
Throws:
NoSuchMessageException - if a message-boards message with the primary key could not be found
SystemException - if a system exception occurred

findByUUID_G

public static MBMessage findByUUID_G(String uuid,
                                     long groupId)
                              throws SystemException,
                                     NoSuchMessageException
Finds the message-boards message where uuid = ? and groupId = ? or throws a NoSuchMessageException if it could not be found.

Parameters:
uuid - the uuid to search with
groupId - the group id to search with
Returns:
the matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

fetchByUUID_G

public static MBMessage fetchByUUID_G(String uuid,
                                      long groupId)
                               throws SystemException
Finds the message-boards message where uuid = ? and groupId = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
uuid - the uuid to search with
groupId - the group id to search with
Returns:
the matching message-boards message, or null if a matching message-boards message could not be found
Throws:
SystemException - if a system exception occurred

fetchByUUID_G

public static MBMessage fetchByUUID_G(String uuid,
                                      long groupId,
                                      boolean retrieveFromCache)
                               throws SystemException
Finds the message-boards message where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
uuid - the uuid to search with
groupId - the group id to search with
Returns:
the matching message-boards message, or null if a matching message-boards message could not be found
Throws:
SystemException - if a system exception occurred

findByGroupId

public static List<MBMessage> findByGroupId(long groupId)
                                     throws SystemException
Finds all the message-boards messages where groupId = ?.

Parameters:
groupId - the group id to search with
Returns:
the matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByGroupId

public static List<MBMessage> findByGroupId(long groupId,
                                            int start,
                                            int end)
                                     throws SystemException
Finds a range of all the message-boards messages where groupId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByGroupId

public static List<MBMessage> findByGroupId(long groupId,
                                            int start,
                                            int end,
                                            OrderByComparator orderByComparator)
                                     throws SystemException
Finds an ordered range of all the message-boards messages where groupId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByGroupId_First

public static MBMessage findByGroupId_First(long groupId,
                                            OrderByComparator orderByComparator)
                                     throws SystemException,
                                            NoSuchMessageException
Finds the first message-boards message in the ordered set where groupId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByGroupId_Last

public static MBMessage findByGroupId_Last(long groupId,
                                           OrderByComparator orderByComparator)
                                    throws SystemException,
                                           NoSuchMessageException
Finds the last message-boards message in the ordered set where groupId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByGroupId_PrevAndNext

public static MBMessage[] findByGroupId_PrevAndNext(long messageId,
                                                    long groupId,
                                                    OrderByComparator orderByComparator)
                                             throws SystemException,
                                                    NoSuchMessageException
Finds the message-boards messages before and after the current message-boards message in the ordered set where groupId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
messageId - the primary key of the current message-boards message
groupId - the group id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next message-boards message
Throws:
NoSuchMessageException - if a message-boards message with the primary key could not be found
SystemException - if a system exception occurred

filterFindByGroupId

public static List<MBMessage> filterFindByGroupId(long groupId)
                                           throws SystemException
Filters by the user's permissions and finds all the message-boards messages where groupId = ?.

Parameters:
groupId - the group id to search with
Returns:
the matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByGroupId

public static List<MBMessage> filterFindByGroupId(long groupId,
                                                  int start,
                                                  int end)
                                           throws SystemException
Filters by the user's permissions and finds a range of all the message-boards messages where groupId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByGroupId

public static List<MBMessage> filterFindByGroupId(long groupId,
                                                  int start,
                                                  int end,
                                                  OrderByComparator orderByComparator)
                                           throws SystemException
Filters by the user's permissions and finds an ordered range of all the message-boards messages where groupId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

findByCompanyId

public static List<MBMessage> findByCompanyId(long companyId)
                                       throws SystemException
Finds all the message-boards messages where companyId = ?.

Parameters:
companyId - the company id to search with
Returns:
the matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByCompanyId

public static List<MBMessage> findByCompanyId(long companyId,
                                              int start,
                                              int end)
                                       throws SystemException
Finds a range of all the message-boards messages where companyId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByCompanyId

public static List<MBMessage> findByCompanyId(long companyId,
                                              int start,
                                              int end,
                                              OrderByComparator orderByComparator)
                                       throws SystemException
Finds an ordered range of all the message-boards messages where companyId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByCompanyId_First

public static MBMessage findByCompanyId_First(long companyId,
                                              OrderByComparator orderByComparator)
                                       throws SystemException,
                                              NoSuchMessageException
Finds the first message-boards message in the ordered set where companyId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByCompanyId_Last

public static MBMessage findByCompanyId_Last(long companyId,
                                             OrderByComparator orderByComparator)
                                      throws SystemException,
                                             NoSuchMessageException
Finds the last message-boards message in the ordered set where companyId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByCompanyId_PrevAndNext

public static MBMessage[] findByCompanyId_PrevAndNext(long messageId,
                                                      long companyId,
                                                      OrderByComparator orderByComparator)
                                               throws SystemException,
                                                      NoSuchMessageException
Finds the message-boards messages before and after the current message-boards message in the ordered set where companyId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
messageId - the primary key of the current message-boards message
companyId - the company id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next message-boards message
Throws:
NoSuchMessageException - if a message-boards message with the primary key could not be found
SystemException - if a system exception occurred

findByThreadId

public static List<MBMessage> findByThreadId(long threadId)
                                      throws SystemException
Finds all the message-boards messages where threadId = ?.

Parameters:
threadId - the thread id to search with
Returns:
the matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByThreadId

public static List<MBMessage> findByThreadId(long threadId,
                                             int start,
                                             int end)
                                      throws SystemException
Finds a range of all the message-boards messages where threadId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
threadId - the thread id to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByThreadId

public static List<MBMessage> findByThreadId(long threadId,
                                             int start,
                                             int end,
                                             OrderByComparator orderByComparator)
                                      throws SystemException
Finds an ordered range of all the message-boards messages where threadId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
threadId - the thread id to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByThreadId_First

public static MBMessage findByThreadId_First(long threadId,
                                             OrderByComparator orderByComparator)
                                      throws SystemException,
                                             NoSuchMessageException
Finds the first message-boards message in the ordered set where threadId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
threadId - the thread id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByThreadId_Last

public static MBMessage findByThreadId_Last(long threadId,
                                            OrderByComparator orderByComparator)
                                     throws SystemException,
                                            NoSuchMessageException
Finds the last message-boards message in the ordered set where threadId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
threadId - the thread id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByThreadId_PrevAndNext

public static MBMessage[] findByThreadId_PrevAndNext(long messageId,
                                                     long threadId,
                                                     OrderByComparator orderByComparator)
                                              throws SystemException,
                                                     NoSuchMessageException
Finds the message-boards messages before and after the current message-boards message in the ordered set where threadId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
messageId - the primary key of the current message-boards message
threadId - the thread id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next message-boards message
Throws:
NoSuchMessageException - if a message-boards message with the primary key could not be found
SystemException - if a system exception occurred

findByThreadReplies

public static List<MBMessage> findByThreadReplies(long threadId)
                                           throws SystemException
Finds all the message-boards messages where threadId = ?.

Parameters:
threadId - the thread id to search with
Returns:
the matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByThreadReplies

public static List<MBMessage> findByThreadReplies(long threadId,
                                                  int start,
                                                  int end)
                                           throws SystemException
Finds a range of all the message-boards messages where threadId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
threadId - the thread id to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByThreadReplies

public static List<MBMessage> findByThreadReplies(long threadId,
                                                  int start,
                                                  int end,
                                                  OrderByComparator orderByComparator)
                                           throws SystemException
Finds an ordered range of all the message-boards messages where threadId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
threadId - the thread id to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByThreadReplies_First

public static MBMessage findByThreadReplies_First(long threadId,
                                                  OrderByComparator orderByComparator)
                                           throws SystemException,
                                                  NoSuchMessageException
Finds the first message-boards message in the ordered set where threadId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
threadId - the thread id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByThreadReplies_Last

public static MBMessage findByThreadReplies_Last(long threadId,
                                                 OrderByComparator orderByComparator)
                                          throws SystemException,
                                                 NoSuchMessageException
Finds the last message-boards message in the ordered set where threadId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
threadId - the thread id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByThreadReplies_PrevAndNext

public static MBMessage[] findByThreadReplies_PrevAndNext(long messageId,
                                                          long threadId,
                                                          OrderByComparator orderByComparator)
                                                   throws SystemException,
                                                          NoSuchMessageException
Finds the message-boards messages before and after the current message-boards message in the ordered set where threadId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
messageId - the primary key of the current message-boards message
threadId - the thread id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next message-boards message
Throws:
NoSuchMessageException - if a message-boards message with the primary key could not be found
SystemException - if a system exception occurred

findByUserId

public static List<MBMessage> findByUserId(long userId)
                                    throws SystemException
Finds all the message-boards messages where userId = ?.

Parameters:
userId - the user id to search with
Returns:
the matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByUserId

public static List<MBMessage> findByUserId(long userId,
                                           int start,
                                           int end)
                                    throws SystemException
Finds a range of all the message-boards messages where userId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
userId - the user id to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByUserId

public static List<MBMessage> findByUserId(long userId,
                                           int start,
                                           int end,
                                           OrderByComparator orderByComparator)
                                    throws SystemException
Finds an ordered range of all the message-boards messages where userId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
userId - the user id to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByUserId_First

public static MBMessage findByUserId_First(long userId,
                                           OrderByComparator orderByComparator)
                                    throws SystemException,
                                           NoSuchMessageException
Finds the first message-boards message in the ordered set where userId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
userId - the user id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByUserId_Last

public static MBMessage findByUserId_Last(long userId,
                                          OrderByComparator orderByComparator)
                                   throws SystemException,
                                          NoSuchMessageException
Finds the last message-boards message in the ordered set where userId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
userId - the user id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByUserId_PrevAndNext

public static MBMessage[] findByUserId_PrevAndNext(long messageId,
                                                   long userId,
                                                   OrderByComparator orderByComparator)
                                            throws SystemException,
                                                   NoSuchMessageException
Finds the message-boards messages before and after the current message-boards message in the ordered set where userId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
messageId - the primary key of the current message-boards message
userId - the user id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next message-boards message
Throws:
NoSuchMessageException - if a message-boards message with the primary key could not be found
SystemException - if a system exception occurred

findByG_U

public static List<MBMessage> findByG_U(long groupId,
                                        long userId)
                                 throws SystemException
Finds all the message-boards messages where groupId = ? and userId = ?.

Parameters:
groupId - the group id to search with
userId - the user id to search with
Returns:
the matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByG_U

public static List<MBMessage> findByG_U(long groupId,
                                        long userId,
                                        int start,
                                        int end)
                                 throws SystemException
Finds a range of all the message-boards messages where groupId = ? and userId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByG_U

public static List<MBMessage> findByG_U(long groupId,
                                        long userId,
                                        int start,
                                        int end,
                                        OrderByComparator orderByComparator)
                                 throws SystemException
Finds an ordered range of all the message-boards messages where groupId = ? and userId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByG_U_First

public static MBMessage findByG_U_First(long groupId,
                                        long userId,
                                        OrderByComparator orderByComparator)
                                 throws SystemException,
                                        NoSuchMessageException
Finds the first message-boards message in the ordered set where groupId = ? and userId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByG_U_Last

public static MBMessage findByG_U_Last(long groupId,
                                       long userId,
                                       OrderByComparator orderByComparator)
                                throws SystemException,
                                       NoSuchMessageException
Finds the last message-boards message in the ordered set where groupId = ? and userId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByG_U_PrevAndNext

public static MBMessage[] findByG_U_PrevAndNext(long messageId,
                                                long groupId,
                                                long userId,
                                                OrderByComparator orderByComparator)
                                         throws SystemException,
                                                NoSuchMessageException
Finds the message-boards messages before and after the current message-boards message in the ordered set where groupId = ? and userId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
messageId - the primary key of the current message-boards message
groupId - the group id to search with
userId - the user id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next message-boards message
Throws:
NoSuchMessageException - if a message-boards message with the primary key could not be found
SystemException - if a system exception occurred

filterFindByG_U

public static List<MBMessage> filterFindByG_U(long groupId,
                                              long userId)
                                       throws SystemException
Filters by the user's permissions and finds all the message-boards messages where groupId = ? and userId = ?.

Parameters:
groupId - the group id to search with
userId - the user id to search with
Returns:
the matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_U

public static List<MBMessage> filterFindByG_U(long groupId,
                                              long userId,
                                              int start,
                                              int end)
                                       throws SystemException
Filters by the user's permissions and finds a range of all the message-boards messages where groupId = ? and userId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_U

public static List<MBMessage> filterFindByG_U(long groupId,
                                              long userId,
                                              int start,
                                              int end,
                                              OrderByComparator orderByComparator)
                                       throws SystemException
Filters by the user's permissions and finds an ordered range of all the message-boards messages where groupId = ? and userId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

findByG_C

public static List<MBMessage> findByG_C(long groupId,
                                        long categoryId)
                                 throws SystemException
Finds all the message-boards messages where groupId = ? and categoryId = ?.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
Returns:
the matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByG_C

public static List<MBMessage> findByG_C(long groupId,
                                        long categoryId,
                                        int start,
                                        int end)
                                 throws SystemException
Finds a range of all the message-boards messages where groupId = ? and categoryId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByG_C

public static List<MBMessage> findByG_C(long groupId,
                                        long categoryId,
                                        int start,
                                        int end,
                                        OrderByComparator orderByComparator)
                                 throws SystemException
Finds an ordered range of all the message-boards messages where groupId = ? and categoryId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByG_C_First

public static MBMessage findByG_C_First(long groupId,
                                        long categoryId,
                                        OrderByComparator orderByComparator)
                                 throws SystemException,
                                        NoSuchMessageException
Finds the first message-boards message in the ordered set where groupId = ? and categoryId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByG_C_Last

public static MBMessage findByG_C_Last(long groupId,
                                       long categoryId,
                                       OrderByComparator orderByComparator)
                                throws SystemException,
                                       NoSuchMessageException
Finds the last message-boards message in the ordered set where groupId = ? and categoryId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByG_C_PrevAndNext

public static MBMessage[] findByG_C_PrevAndNext(long messageId,
                                                long groupId,
                                                long categoryId,
                                                OrderByComparator orderByComparator)
                                         throws SystemException,
                                                NoSuchMessageException
Finds the message-boards messages before and after the current message-boards message in the ordered set where groupId = ? and categoryId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
messageId - the primary key of the current message-boards message
groupId - the group id to search with
categoryId - the category id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next message-boards message
Throws:
NoSuchMessageException - if a message-boards message with the primary key could not be found
SystemException - if a system exception occurred

filterFindByG_C

public static List<MBMessage> filterFindByG_C(long groupId,
                                              long categoryId)
                                       throws SystemException
Filters by the user's permissions and finds all the message-boards messages where groupId = ? and categoryId = ?.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
Returns:
the matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_C

public static List<MBMessage> filterFindByG_C(long groupId,
                                              long categoryId,
                                              int start,
                                              int end)
                                       throws SystemException
Filters by the user's permissions and finds a range of all the message-boards messages where groupId = ? and categoryId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_C

public static List<MBMessage> filterFindByG_C(long groupId,
                                              long categoryId,
                                              int start,
                                              int end,
                                              OrderByComparator orderByComparator)
                                       throws SystemException
Filters by the user's permissions and finds an ordered range of all the message-boards messages where groupId = ? and categoryId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

findByG_S

public static List<MBMessage> findByG_S(long groupId,
                                        int status)
                                 throws SystemException
Finds all the message-boards messages where groupId = ? and status = ?.

Parameters:
groupId - the group id to search with
status - the status to search with
Returns:
the matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByG_S

public static List<MBMessage> findByG_S(long groupId,
                                        int status,
                                        int start,
                                        int end)
                                 throws SystemException
Finds a range of all the message-boards messages where groupId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
status - the status to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByG_S

public static List<MBMessage> findByG_S(long groupId,
                                        int status,
                                        int start,
                                        int end,
                                        OrderByComparator orderByComparator)
                                 throws SystemException
Finds an ordered range of all the message-boards messages where groupId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
status - the status to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByG_S_First

public static MBMessage findByG_S_First(long groupId,
                                        int status,
                                        OrderByComparator orderByComparator)
                                 throws SystemException,
                                        NoSuchMessageException
Finds the first message-boards message in the ordered set where groupId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByG_S_Last

public static MBMessage findByG_S_Last(long groupId,
                                       int status,
                                       OrderByComparator orderByComparator)
                                throws SystemException,
                                       NoSuchMessageException
Finds the last message-boards message in the ordered set where groupId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByG_S_PrevAndNext

public static MBMessage[] findByG_S_PrevAndNext(long messageId,
                                                long groupId,
                                                int status,
                                                OrderByComparator orderByComparator)
                                         throws SystemException,
                                                NoSuchMessageException
Finds the message-boards messages before and after the current message-boards message in the ordered set where groupId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
messageId - the primary key of the current message-boards message
groupId - the group id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next message-boards message
Throws:
NoSuchMessageException - if a message-boards message with the primary key could not be found
SystemException - if a system exception occurred

filterFindByG_S

public static List<MBMessage> filterFindByG_S(long groupId,
                                              int status)
                                       throws SystemException
Filters by the user's permissions and finds all the message-boards messages where groupId = ? and status = ?.

Parameters:
groupId - the group id to search with
status - the status to search with
Returns:
the matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_S

public static List<MBMessage> filterFindByG_S(long groupId,
                                              int status,
                                              int start,
                                              int end)
                                       throws SystemException
Filters by the user's permissions and finds a range of all the message-boards messages where groupId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
status - the status to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_S

public static List<MBMessage> filterFindByG_S(long groupId,
                                              int status,
                                              int start,
                                              int end,
                                              OrderByComparator orderByComparator)
                                       throws SystemException
Filters by the user's permissions and finds an ordered range of all the message-boards messages where groupId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
status - the status to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

findByC_S

public static List<MBMessage> findByC_S(long companyId,
                                        int status)
                                 throws SystemException
Finds all the message-boards messages where companyId = ? and status = ?.

Parameters:
companyId - the company id to search with
status - the status to search with
Returns:
the matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByC_S

public static List<MBMessage> findByC_S(long companyId,
                                        int status,
                                        int start,
                                        int end)
                                 throws SystemException
Finds a range of all the message-boards messages where companyId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
status - the status to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByC_S

public static List<MBMessage> findByC_S(long companyId,
                                        int status,
                                        int start,
                                        int end,
                                        OrderByComparator orderByComparator)
                                 throws SystemException
Finds an ordered range of all the message-boards messages where companyId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
status - the status to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByC_S_First

public static MBMessage findByC_S_First(long companyId,
                                        int status,
                                        OrderByComparator orderByComparator)
                                 throws SystemException,
                                        NoSuchMessageException
Finds the first message-boards message in the ordered set where companyId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByC_S_Last

public static MBMessage findByC_S_Last(long companyId,
                                       int status,
                                       OrderByComparator orderByComparator)
                                throws SystemException,
                                       NoSuchMessageException
Finds the last message-boards message in the ordered set where companyId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
companyId - the company id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByC_S_PrevAndNext

public static MBMessage[] findByC_S_PrevAndNext(long messageId,
                                                long companyId,
                                                int status,
                                                OrderByComparator orderByComparator)
                                         throws SystemException,
                                                NoSuchMessageException
Finds the message-boards messages before and after the current message-boards message in the ordered set where companyId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
messageId - the primary key of the current message-boards message
companyId - the company id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next message-boards message
Throws:
NoSuchMessageException - if a message-boards message with the primary key could not be found
SystemException - if a system exception occurred

findByC_C

public static List<MBMessage> findByC_C(long classNameId,
                                        long classPK)
                                 throws SystemException
Finds all the message-boards messages where classNameId = ? and classPK = ?.

Parameters:
classNameId - the class name id to search with
classPK - the class p k to search with
Returns:
the matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByC_C

public static List<MBMessage> findByC_C(long classNameId,
                                        long classPK,
                                        int start,
                                        int end)
                                 throws SystemException
Finds a range of all the message-boards messages where classNameId = ? and classPK = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
classNameId - the class name id to search with
classPK - the class p k to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByC_C

public static List<MBMessage> findByC_C(long classNameId,
                                        long classPK,
                                        int start,
                                        int end,
                                        OrderByComparator orderByComparator)
                                 throws SystemException
Finds an ordered range of all the message-boards messages where classNameId = ? and classPK = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
classNameId - the class name id to search with
classPK - the class p k to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByC_C_First

public static MBMessage findByC_C_First(long classNameId,
                                        long classPK,
                                        OrderByComparator orderByComparator)
                                 throws SystemException,
                                        NoSuchMessageException
Finds the first message-boards message in the ordered set where classNameId = ? and classPK = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
classNameId - the class name id to search with
classPK - the class p k to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByC_C_Last

public static MBMessage findByC_C_Last(long classNameId,
                                       long classPK,
                                       OrderByComparator orderByComparator)
                                throws SystemException,
                                       NoSuchMessageException
Finds the last message-boards message in the ordered set where classNameId = ? and classPK = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
classNameId - the class name id to search with
classPK - the class p k to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByC_C_PrevAndNext

public static MBMessage[] findByC_C_PrevAndNext(long messageId,
                                                long classNameId,
                                                long classPK,
                                                OrderByComparator orderByComparator)
                                         throws SystemException,
                                                NoSuchMessageException
Finds the message-boards messages before and after the current message-boards message in the ordered set where classNameId = ? and classPK = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
messageId - the primary key of the current message-boards message
classNameId - the class name id to search with
classPK - the class p k to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next message-boards message
Throws:
NoSuchMessageException - if a message-boards message with the primary key could not be found
SystemException - if a system exception occurred

findByT_P

public static List<MBMessage> findByT_P(long threadId,
                                        long parentMessageId)
                                 throws SystemException
Finds all the message-boards messages where threadId = ? and parentMessageId = ?.

Parameters:
threadId - the thread id to search with
parentMessageId - the parent message id to search with
Returns:
the matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByT_P

public static List<MBMessage> findByT_P(long threadId,
                                        long parentMessageId,
                                        int start,
                                        int end)
                                 throws SystemException
Finds a range of all the message-boards messages where threadId = ? and parentMessageId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
threadId - the thread id to search with
parentMessageId - the parent message id to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByT_P

public static List<MBMessage> findByT_P(long threadId,
                                        long parentMessageId,
                                        int start,
                                        int end,
                                        OrderByComparator orderByComparator)
                                 throws SystemException
Finds an ordered range of all the message-boards messages where threadId = ? and parentMessageId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
threadId - the thread id to search with
parentMessageId - the parent message id to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByT_P_First

public static MBMessage findByT_P_First(long threadId,
                                        long parentMessageId,
                                        OrderByComparator orderByComparator)
                                 throws SystemException,
                                        NoSuchMessageException
Finds the first message-boards message in the ordered set where threadId = ? and parentMessageId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
threadId - the thread id to search with
parentMessageId - the parent message id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByT_P_Last

public static MBMessage findByT_P_Last(long threadId,
                                       long parentMessageId,
                                       OrderByComparator orderByComparator)
                                throws SystemException,
                                       NoSuchMessageException
Finds the last message-boards message in the ordered set where threadId = ? and parentMessageId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
threadId - the thread id to search with
parentMessageId - the parent message id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByT_P_PrevAndNext

public static MBMessage[] findByT_P_PrevAndNext(long messageId,
                                                long threadId,
                                                long parentMessageId,
                                                OrderByComparator orderByComparator)
                                         throws SystemException,
                                                NoSuchMessageException
Finds the message-boards messages before and after the current message-boards message in the ordered set where threadId = ? and parentMessageId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
messageId - the primary key of the current message-boards message
threadId - the thread id to search with
parentMessageId - the parent message id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next message-boards message
Throws:
NoSuchMessageException - if a message-boards message with the primary key could not be found
SystemException - if a system exception occurred

findByT_S

public static List<MBMessage> findByT_S(long threadId,
                                        int status)
                                 throws SystemException
Finds all the message-boards messages where threadId = ? and status = ?.

Parameters:
threadId - the thread id to search with
status - the status to search with
Returns:
the matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByT_S

public static List<MBMessage> findByT_S(long threadId,
                                        int status,
                                        int start,
                                        int end)
                                 throws SystemException
Finds a range of all the message-boards messages where threadId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
threadId - the thread id to search with
status - the status to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByT_S

public static List<MBMessage> findByT_S(long threadId,
                                        int status,
                                        int start,
                                        int end,
                                        OrderByComparator orderByComparator)
                                 throws SystemException
Finds an ordered range of all the message-boards messages where threadId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
threadId - the thread id to search with
status - the status to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByT_S_First

public static MBMessage findByT_S_First(long threadId,
                                        int status,
                                        OrderByComparator orderByComparator)
                                 throws SystemException,
                                        NoSuchMessageException
Finds the first message-boards message in the ordered set where threadId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
threadId - the thread id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByT_S_Last

public static MBMessage findByT_S_Last(long threadId,
                                       int status,
                                       OrderByComparator orderByComparator)
                                throws SystemException,
                                       NoSuchMessageException
Finds the last message-boards message in the ordered set where threadId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
threadId - the thread id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByT_S_PrevAndNext

public static MBMessage[] findByT_S_PrevAndNext(long messageId,
                                                long threadId,
                                                int status,
                                                OrderByComparator orderByComparator)
                                         throws SystemException,
                                                NoSuchMessageException
Finds the message-boards messages before and after the current message-boards message in the ordered set where threadId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
messageId - the primary key of the current message-boards message
threadId - the thread id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next message-boards message
Throws:
NoSuchMessageException - if a message-boards message with the primary key could not be found
SystemException - if a system exception occurred

findByTR_S

public static List<MBMessage> findByTR_S(long threadId,
                                         int status)
                                  throws SystemException
Finds all the message-boards messages where threadId = ? and status = ?.

Parameters:
threadId - the thread id to search with
status - the status to search with
Returns:
the matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByTR_S

public static List<MBMessage> findByTR_S(long threadId,
                                         int status,
                                         int start,
                                         int end)
                                  throws SystemException
Finds a range of all the message-boards messages where threadId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
threadId - the thread id to search with
status - the status to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByTR_S

public static List<MBMessage> findByTR_S(long threadId,
                                         int status,
                                         int start,
                                         int end,
                                         OrderByComparator orderByComparator)
                                  throws SystemException
Finds an ordered range of all the message-boards messages where threadId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
threadId - the thread id to search with
status - the status to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByTR_S_First

public static MBMessage findByTR_S_First(long threadId,
                                         int status,
                                         OrderByComparator orderByComparator)
                                  throws SystemException,
                                         NoSuchMessageException
Finds the first message-boards message in the ordered set where threadId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
threadId - the thread id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByTR_S_Last

public static MBMessage findByTR_S_Last(long threadId,
                                        int status,
                                        OrderByComparator orderByComparator)
                                 throws SystemException,
                                        NoSuchMessageException
Finds the last message-boards message in the ordered set where threadId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
threadId - the thread id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByTR_S_PrevAndNext

public static MBMessage[] findByTR_S_PrevAndNext(long messageId,
                                                 long threadId,
                                                 int status,
                                                 OrderByComparator orderByComparator)
                                          throws SystemException,
                                                 NoSuchMessageException
Finds the message-boards messages before and after the current message-boards message in the ordered set where threadId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
messageId - the primary key of the current message-boards message
threadId - the thread id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next message-boards message
Throws:
NoSuchMessageException - if a message-boards message with the primary key could not be found
SystemException - if a system exception occurred

findByG_U_S

public static List<MBMessage> findByG_U_S(long groupId,
                                          long userId,
                                          int status)
                                   throws SystemException
Finds all the message-boards messages where groupId = ? and userId = ? and status = ?.

Parameters:
groupId - the group id to search with
userId - the user id to search with
status - the status to search with
Returns:
the matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByG_U_S

public static List<MBMessage> findByG_U_S(long groupId,
                                          long userId,
                                          int status,
                                          int start,
                                          int end)
                                   throws SystemException
Finds a range of all the message-boards messages where groupId = ? and userId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
status - the status to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByG_U_S

public static List<MBMessage> findByG_U_S(long groupId,
                                          long userId,
                                          int status,
                                          int start,
                                          int end,
                                          OrderByComparator orderByComparator)
                                   throws SystemException
Finds an ordered range of all the message-boards messages where groupId = ? and userId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
status - the status to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByG_U_S_First

public static MBMessage findByG_U_S_First(long groupId,
                                          long userId,
                                          int status,
                                          OrderByComparator orderByComparator)
                                   throws SystemException,
                                          NoSuchMessageException
Finds the first message-boards message in the ordered set where groupId = ? and userId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByG_U_S_Last

public static MBMessage findByG_U_S_Last(long groupId,
                                         long userId,
                                         int status,
                                         OrderByComparator orderByComparator)
                                  throws SystemException,
                                         NoSuchMessageException
Finds the last message-boards message in the ordered set where groupId = ? and userId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByG_U_S_PrevAndNext

public static MBMessage[] findByG_U_S_PrevAndNext(long messageId,
                                                  long groupId,
                                                  long userId,
                                                  int status,
                                                  OrderByComparator orderByComparator)
                                           throws SystemException,
                                                  NoSuchMessageException
Finds the message-boards messages before and after the current message-boards message in the ordered set where groupId = ? and userId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
messageId - the primary key of the current message-boards message
groupId - the group id to search with
userId - the user id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next message-boards message
Throws:
NoSuchMessageException - if a message-boards message with the primary key could not be found
SystemException - if a system exception occurred

filterFindByG_U_S

public static List<MBMessage> filterFindByG_U_S(long groupId,
                                                long userId,
                                                int status)
                                         throws SystemException
Filters by the user's permissions and finds all the message-boards messages where groupId = ? and userId = ? and status = ?.

Parameters:
groupId - the group id to search with
userId - the user id to search with
status - the status to search with
Returns:
the matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_U_S

public static List<MBMessage> filterFindByG_U_S(long groupId,
                                                long userId,
                                                int status,
                                                int start,
                                                int end)
                                         throws SystemException
Filters by the user's permissions and finds a range of all the message-boards messages where groupId = ? and userId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
status - the status to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_U_S

public static List<MBMessage> filterFindByG_U_S(long groupId,
                                                long userId,
                                                int status,
                                                int start,
                                                int end,
                                                OrderByComparator orderByComparator)
                                         throws SystemException
Filters by the user's permissions and finds an ordered range of all the message-boards messages where groupId = ? and userId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
userId - the user id to search with
status - the status to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

findByG_C_T

public static List<MBMessage> findByG_C_T(long groupId,
                                          long categoryId,
                                          long threadId)
                                   throws SystemException
Finds all the message-boards messages where groupId = ? and categoryId = ? and threadId = ?.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
threadId - the thread id to search with
Returns:
the matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByG_C_T

public static List<MBMessage> findByG_C_T(long groupId,
                                          long categoryId,
                                          long threadId,
                                          int start,
                                          int end)
                                   throws SystemException
Finds a range of all the message-boards messages where groupId = ? and categoryId = ? and threadId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
threadId - the thread id to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByG_C_T

public static List<MBMessage> findByG_C_T(long groupId,
                                          long categoryId,
                                          long threadId,
                                          int start,
                                          int end,
                                          OrderByComparator orderByComparator)
                                   throws SystemException
Finds an ordered range of all the message-boards messages where groupId = ? and categoryId = ? and threadId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
threadId - the thread id to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByG_C_T_First

public static MBMessage findByG_C_T_First(long groupId,
                                          long categoryId,
                                          long threadId,
                                          OrderByComparator orderByComparator)
                                   throws SystemException,
                                          NoSuchMessageException
Finds the first message-boards message in the ordered set where groupId = ? and categoryId = ? and threadId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
threadId - the thread id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByG_C_T_Last

public static MBMessage findByG_C_T_Last(long groupId,
                                         long categoryId,
                                         long threadId,
                                         OrderByComparator orderByComparator)
                                  throws SystemException,
                                         NoSuchMessageException
Finds the last message-boards message in the ordered set where groupId = ? and categoryId = ? and threadId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
threadId - the thread id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByG_C_T_PrevAndNext

public static MBMessage[] findByG_C_T_PrevAndNext(long messageId,
                                                  long groupId,
                                                  long categoryId,
                                                  long threadId,
                                                  OrderByComparator orderByComparator)
                                           throws SystemException,
                                                  NoSuchMessageException
Finds the message-boards messages before and after the current message-boards message in the ordered set where groupId = ? and categoryId = ? and threadId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
messageId - the primary key of the current message-boards message
groupId - the group id to search with
categoryId - the category id to search with
threadId - the thread id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next message-boards message
Throws:
NoSuchMessageException - if a message-boards message with the primary key could not be found
SystemException - if a system exception occurred

filterFindByG_C_T

public static List<MBMessage> filterFindByG_C_T(long groupId,
                                                long categoryId,
                                                long threadId)
                                         throws SystemException
Filters by the user's permissions and finds all the message-boards messages where groupId = ? and categoryId = ? and threadId = ?.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
threadId - the thread id to search with
Returns:
the matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_C_T

public static List<MBMessage> filterFindByG_C_T(long groupId,
                                                long categoryId,
                                                long threadId,
                                                int start,
                                                int end)
                                         throws SystemException
Filters by the user's permissions and finds a range of all the message-boards messages where groupId = ? and categoryId = ? and threadId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
threadId - the thread id to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_C_T

public static List<MBMessage> filterFindByG_C_T(long groupId,
                                                long categoryId,
                                                long threadId,
                                                int start,
                                                int end,
                                                OrderByComparator orderByComparator)
                                         throws SystemException
Filters by the user's permissions and finds an ordered range of all the message-boards messages where groupId = ? and categoryId = ? and threadId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
threadId - the thread id to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

findByG_C_S

public static List<MBMessage> findByG_C_S(long groupId,
                                          long categoryId,
                                          int status)
                                   throws SystemException
Finds all the message-boards messages where groupId = ? and categoryId = ? and status = ?.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
status - the status to search with
Returns:
the matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByG_C_S

public static List<MBMessage> findByG_C_S(long groupId,
                                          long categoryId,
                                          int status,
                                          int start,
                                          int end)
                                   throws SystemException
Finds a range of all the message-boards messages where groupId = ? and categoryId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
status - the status to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByG_C_S

public static List<MBMessage> findByG_C_S(long groupId,
                                          long categoryId,
                                          int status,
                                          int start,
                                          int end,
                                          OrderByComparator orderByComparator)
                                   throws SystemException
Finds an ordered range of all the message-boards messages where groupId = ? and categoryId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
status - the status to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByG_C_S_First

public static MBMessage findByG_C_S_First(long groupId,
                                          long categoryId,
                                          int status,
                                          OrderByComparator orderByComparator)
                                   throws SystemException,
                                          NoSuchMessageException
Finds the first message-boards message in the ordered set where groupId = ? and categoryId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByG_C_S_Last

public static MBMessage findByG_C_S_Last(long groupId,
                                         long categoryId,
                                         int status,
                                         OrderByComparator orderByComparator)
                                  throws SystemException,
                                         NoSuchMessageException
Finds the last message-boards message in the ordered set where groupId = ? and categoryId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByG_C_S_PrevAndNext

public static MBMessage[] findByG_C_S_PrevAndNext(long messageId,
                                                  long groupId,
                                                  long categoryId,
                                                  int status,
                                                  OrderByComparator orderByComparator)
                                           throws SystemException,
                                                  NoSuchMessageException
Finds the message-boards messages before and after the current message-boards message in the ordered set where groupId = ? and categoryId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
messageId - the primary key of the current message-boards message
groupId - the group id to search with
categoryId - the category id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next message-boards message
Throws:
NoSuchMessageException - if a message-boards message with the primary key could not be found
SystemException - if a system exception occurred

filterFindByG_C_S

public static List<MBMessage> filterFindByG_C_S(long groupId,
                                                long categoryId,
                                                int status)
                                         throws SystemException
Filters by the user's permissions and finds all the message-boards messages where groupId = ? and categoryId = ? and status = ?.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
status - the status to search with
Returns:
the matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_C_S

public static List<MBMessage> filterFindByG_C_S(long groupId,
                                                long categoryId,
                                                int status,
                                                int start,
                                                int end)
                                         throws SystemException
Filters by the user's permissions and finds a range of all the message-boards messages where groupId = ? and categoryId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
status - the status to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_C_S

public static List<MBMessage> filterFindByG_C_S(long groupId,
                                                long categoryId,
                                                int status,
                                                int start,
                                                int end,
                                                OrderByComparator orderByComparator)
                                         throws SystemException
Filters by the user's permissions and finds an ordered range of all the message-boards messages where groupId = ? and categoryId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
status - the status to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

findByC_C_S

public static List<MBMessage> findByC_C_S(long classNameId,
                                          long classPK,
                                          int status)
                                   throws SystemException
Finds all the message-boards messages where classNameId = ? and classPK = ? and status = ?.

Parameters:
classNameId - the class name id to search with
classPK - the class p k to search with
status - the status to search with
Returns:
the matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByC_C_S

public static List<MBMessage> findByC_C_S(long classNameId,
                                          long classPK,
                                          int status,
                                          int start,
                                          int end)
                                   throws SystemException
Finds a range of all the message-boards messages where classNameId = ? and classPK = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
classNameId - the class name id to search with
classPK - the class p k to search with
status - the status to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByC_C_S

public static List<MBMessage> findByC_C_S(long classNameId,
                                          long classPK,
                                          int status,
                                          int start,
                                          int end,
                                          OrderByComparator orderByComparator)
                                   throws SystemException
Finds an ordered range of all the message-boards messages where classNameId = ? and classPK = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
classNameId - the class name id to search with
classPK - the class p k to search with
status - the status to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByC_C_S_First

public static MBMessage findByC_C_S_First(long classNameId,
                                          long classPK,
                                          int status,
                                          OrderByComparator orderByComparator)
                                   throws SystemException,
                                          NoSuchMessageException
Finds the first message-boards message in the ordered set where classNameId = ? and classPK = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
classNameId - the class name id to search with
classPK - the class p k to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByC_C_S_Last

public static MBMessage findByC_C_S_Last(long classNameId,
                                         long classPK,
                                         int status,
                                         OrderByComparator orderByComparator)
                                  throws SystemException,
                                         NoSuchMessageException
Finds the last message-boards message in the ordered set where classNameId = ? and classPK = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
classNameId - the class name id to search with
classPK - the class p k to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByC_C_S_PrevAndNext

public static MBMessage[] findByC_C_S_PrevAndNext(long messageId,
                                                  long classNameId,
                                                  long classPK,
                                                  int status,
                                                  OrderByComparator orderByComparator)
                                           throws SystemException,
                                                  NoSuchMessageException
Finds the message-boards messages before and after the current message-boards message in the ordered set where classNameId = ? and classPK = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
messageId - the primary key of the current message-boards message
classNameId - the class name id to search with
classPK - the class p k to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next message-boards message
Throws:
NoSuchMessageException - if a message-boards message with the primary key could not be found
SystemException - if a system exception occurred

findByG_C_T_S

public static List<MBMessage> findByG_C_T_S(long groupId,
                                            long categoryId,
                                            long threadId,
                                            int status)
                                     throws SystemException
Finds all the message-boards messages where groupId = ? and categoryId = ? and threadId = ? and status = ?.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
threadId - the thread id to search with
status - the status to search with
Returns:
the matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByG_C_T_S

public static List<MBMessage> findByG_C_T_S(long groupId,
                                            long categoryId,
                                            long threadId,
                                            int status,
                                            int start,
                                            int end)
                                     throws SystemException
Finds a range of all the message-boards messages where groupId = ? and categoryId = ? and threadId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
threadId - the thread id to search with
status - the status to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByG_C_T_S

public static List<MBMessage> findByG_C_T_S(long groupId,
                                            long categoryId,
                                            long threadId,
                                            int status,
                                            int start,
                                            int end,
                                            OrderByComparator orderByComparator)
                                     throws SystemException
Finds an ordered range of all the message-boards messages where groupId = ? and categoryId = ? and threadId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
threadId - the thread id to search with
status - the status to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages
Throws:
SystemException - if a system exception occurred

findByG_C_T_S_First

public static MBMessage findByG_C_T_S_First(long groupId,
                                            long categoryId,
                                            long threadId,
                                            int status,
                                            OrderByComparator orderByComparator)
                                     throws SystemException,
                                            NoSuchMessageException
Finds the first message-boards message in the ordered set where groupId = ? and categoryId = ? and threadId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
threadId - the thread id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByG_C_T_S_Last

public static MBMessage findByG_C_T_S_Last(long groupId,
                                           long categoryId,
                                           long threadId,
                                           int status,
                                           OrderByComparator orderByComparator)
                                    throws SystemException,
                                           NoSuchMessageException
Finds the last message-boards message in the ordered set where groupId = ? and categoryId = ? and threadId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
threadId - the thread id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching message-boards message
Throws:
NoSuchMessageException - if a matching message-boards message could not be found
SystemException - if a system exception occurred

findByG_C_T_S_PrevAndNext

public static MBMessage[] findByG_C_T_S_PrevAndNext(long messageId,
                                                    long groupId,
                                                    long categoryId,
                                                    long threadId,
                                                    int status,
                                                    OrderByComparator orderByComparator)
                                             throws SystemException,
                                                    NoSuchMessageException
Finds the message-boards messages before and after the current message-boards message in the ordered set where groupId = ? and categoryId = ? and threadId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
messageId - the primary key of the current message-boards message
groupId - the group id to search with
categoryId - the category id to search with
threadId - the thread id to search with
status - the status to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next message-boards message
Throws:
NoSuchMessageException - if a message-boards message with the primary key could not be found
SystemException - if a system exception occurred

filterFindByG_C_T_S

public static List<MBMessage> filterFindByG_C_T_S(long groupId,
                                                  long categoryId,
                                                  long threadId,
                                                  int status)
                                           throws SystemException
Filters by the user's permissions and finds all the message-boards messages where groupId = ? and categoryId = ? and threadId = ? and status = ?.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
threadId - the thread id to search with
status - the status to search with
Returns:
the matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_C_T_S

public static List<MBMessage> filterFindByG_C_T_S(long groupId,
                                                  long categoryId,
                                                  long threadId,
                                                  int status,
                                                  int start,
                                                  int end)
                                           throws SystemException
Filters by the user's permissions and finds a range of all the message-boards messages where groupId = ? and categoryId = ? and threadId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
threadId - the thread id to search with
status - the status to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByG_C_T_S

public static List<MBMessage> filterFindByG_C_T_S(long groupId,
                                                  long categoryId,
                                                  long threadId,
                                                  int status,
                                                  int start,
                                                  int end,
                                                  OrderByComparator orderByComparator)
                                           throws SystemException
Filters by the user's permissions and finds an ordered range of all the message-boards messages where groupId = ? and categoryId = ? and threadId = ? and status = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
threadId - the thread id to search with
status - the status to search with
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

findAll

public static List<MBMessage> findAll()
                               throws SystemException
Finds all the message-boards messages.

Returns:
the message-boards messages
Throws:
SystemException - if a system exception occurred

findAll

public static List<MBMessage> findAll(int start,
                                      int end)
                               throws SystemException
Finds a range of all the message-boards messages.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
Returns:
the range of message-boards messages
Throws:
SystemException - if a system exception occurred

findAll

public static List<MBMessage> findAll(int start,
                                      int end,
                                      OrderByComparator orderByComparator)
                               throws SystemException
Finds an ordered range of all the message-boards messages.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
start - the lower bound of the range of message-boards messages to return
end - the upper bound of the range of message-boards messages to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of message-boards messages
Throws:
SystemException - if a system exception occurred

removeByUuid

public static void removeByUuid(String uuid)
                         throws SystemException
Removes all the message-boards messages where uuid = ? from the database.

Parameters:
uuid - the uuid to search with
Throws:
SystemException - if a system exception occurred

removeByUUID_G

public static void removeByUUID_G(String uuid,
                                  long groupId)
                           throws SystemException,
                                  NoSuchMessageException
Removes the message-boards message where uuid = ? and groupId = ? from the database.

Parameters:
uuid - the uuid to search with
groupId - the group id to search with
Throws:
SystemException - if a system exception occurred
NoSuchMessageException

removeByGroupId

public static void removeByGroupId(long groupId)
                            throws SystemException
Removes all the message-boards messages where groupId = ? from the database.

Parameters:
groupId - the group id to search with
Throws:
SystemException - if a system exception occurred

removeByCompanyId

public static void removeByCompanyId(long companyId)
                              throws SystemException
Removes all the message-boards messages where companyId = ? from the database.

Parameters:
companyId - the company id to search with
Throws:
SystemException - if a system exception occurred

removeByThreadId

public static void removeByThreadId(long threadId)
                             throws SystemException
Removes all the message-boards messages where threadId = ? from the database.

Parameters:
threadId - the thread id to search with
Throws:
SystemException - if a system exception occurred

removeByThreadReplies

public static void removeByThreadReplies(long threadId)
                                  throws SystemException
Removes all the message-boards messages where threadId = ? from the database.

Parameters:
threadId - the thread id to search with
Throws:
SystemException - if a system exception occurred

removeByUserId

public static void removeByUserId(long userId)
                           throws SystemException
Removes all the message-boards messages where userId = ? from the database.

Parameters:
userId - the user id to search with
Throws:
SystemException - if a system exception occurred

removeByG_U

public static void removeByG_U(long groupId,
                               long userId)
                        throws SystemException
Removes all the message-boards messages where groupId = ? and userId = ? from the database.

Parameters:
groupId - the group id to search with
userId - the user id to search with
Throws:
SystemException - if a system exception occurred

removeByG_C

public static void removeByG_C(long groupId,
                               long categoryId)
                        throws SystemException
Removes all the message-boards messages where groupId = ? and categoryId = ? from the database.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
Throws:
SystemException - if a system exception occurred

removeByG_S

public static void removeByG_S(long groupId,
                               int status)
                        throws SystemException
Removes all the message-boards messages where groupId = ? and status = ? from the database.

Parameters:
groupId - the group id to search with
status - the status to search with
Throws:
SystemException - if a system exception occurred

removeByC_S

public static void removeByC_S(long companyId,
                               int status)
                        throws SystemException
Removes all the message-boards messages where companyId = ? and status = ? from the database.

Parameters:
companyId - the company id to search with
status - the status to search with
Throws:
SystemException - if a system exception occurred

removeByC_C

public static void removeByC_C(long classNameId,
                               long classPK)
                        throws SystemException
Removes all the message-boards messages where classNameId = ? and classPK = ? from the database.

Parameters:
classNameId - the class name id to search with
classPK - the class p k to search with
Throws:
SystemException - if a system exception occurred

removeByT_P

public static void removeByT_P(long threadId,
                               long parentMessageId)
                        throws SystemException
Removes all the message-boards messages where threadId = ? and parentMessageId = ? from the database.

Parameters:
threadId - the thread id to search with
parentMessageId - the parent message id to search with
Throws:
SystemException - if a system exception occurred

removeByT_S

public static void removeByT_S(long threadId,
                               int status)
                        throws SystemException
Removes all the message-boards messages where threadId = ? and status = ? from the database.

Parameters:
threadId - the thread id to search with
status - the status to search with
Throws:
SystemException - if a system exception occurred

removeByTR_S

public static void removeByTR_S(long threadId,
                                int status)
                         throws SystemException
Removes all the message-boards messages where threadId = ? and status = ? from the database.

Parameters:
threadId - the thread id to search with
status - the status to search with
Throws:
SystemException - if a system exception occurred

removeByG_U_S

public static void removeByG_U_S(long groupId,
                                 long userId,
                                 int status)
                          throws SystemException
Removes all the message-boards messages where groupId = ? and userId = ? and status = ? from the database.

Parameters:
groupId - the group id to search with
userId - the user id to search with
status - the status to search with
Throws:
SystemException - if a system exception occurred

removeByG_C_T

public static void removeByG_C_T(long groupId,
                                 long categoryId,
                                 long threadId)
                          throws SystemException
Removes all the message-boards messages where groupId = ? and categoryId = ? and threadId = ? from the database.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
threadId - the thread id to search with
Throws:
SystemException - if a system exception occurred

removeByG_C_S

public static void removeByG_C_S(long groupId,
                                 long categoryId,
                                 int status)
                          throws SystemException
Removes all the message-boards messages where groupId = ? and categoryId = ? and status = ? from the database.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
status - the status to search with
Throws:
SystemException - if a system exception occurred

removeByC_C_S

public static void removeByC_C_S(long classNameId,
                                 long classPK,
                                 int status)
                          throws SystemException
Removes all the message-boards messages where classNameId = ? and classPK = ? and status = ? from the database.

Parameters:
classNameId - the class name id to search with
classPK - the class p k to search with
status - the status to search with
Throws:
SystemException - if a system exception occurred

removeByG_C_T_S

public static void removeByG_C_T_S(long groupId,
                                   long categoryId,
                                   long threadId,
                                   int status)
                            throws SystemException
Removes all the message-boards messages where groupId = ? and categoryId = ? and threadId = ? and status = ? from the database.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
threadId - the thread id to search with
status - the status to search with
Throws:
SystemException - if a system exception occurred

removeAll

public static void removeAll()
                      throws SystemException
Removes all the message-boards messages from the database.

Throws:
SystemException - if a system exception occurred

countByUuid

public static int countByUuid(String uuid)
                       throws SystemException
Counts all the message-boards messages where uuid = ?.

Parameters:
uuid - the uuid to search with
Returns:
the number of matching message-boards messages
Throws:
SystemException - if a system exception occurred

countByUUID_G

public static int countByUUID_G(String uuid,
                                long groupId)
                         throws SystemException
Counts all the message-boards messages where uuid = ? and groupId = ?.

Parameters:
uuid - the uuid to search with
groupId - the group id to search with
Returns:
the number of matching message-boards messages
Throws:
SystemException - if a system exception occurred

countByGroupId

public static int countByGroupId(long groupId)
                          throws SystemException
Counts all the message-boards messages where groupId = ?.

Parameters:
groupId - the group id to search with
Returns:
the number of matching message-boards messages
Throws:
SystemException - if a system exception occurred

filterCountByGroupId

public static int filterCountByGroupId(long groupId)
                                throws SystemException
Filters by the user's permissions and counts all the message-boards messages where groupId = ?.

Parameters:
groupId - the group id to search with
Returns:
the number of matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

countByCompanyId

public static int countByCompanyId(long companyId)
                            throws SystemException
Counts all the message-boards messages where companyId = ?.

Parameters:
companyId - the company id to search with
Returns:
the number of matching message-boards messages
Throws:
SystemException - if a system exception occurred

countByThreadId

public static int countByThreadId(long threadId)
                           throws SystemException
Counts all the message-boards messages where threadId = ?.

Parameters:
threadId - the thread id to search with
Returns:
the number of matching message-boards messages
Throws:
SystemException - if a system exception occurred

countByThreadReplies

public static int countByThreadReplies(long threadId)
                                throws SystemException
Counts all the message-boards messages where threadId = ?.

Parameters:
threadId - the thread id to search with
Returns:
the number of matching message-boards messages
Throws:
SystemException - if a system exception occurred

countByUserId

public static int countByUserId(long userId)
                         throws SystemException
Counts all the message-boards messages where userId = ?.

Parameters:
userId - the user id to search with
Returns:
the number of matching message-boards messages
Throws:
SystemException - if a system exception occurred

countByG_U

public static int countByG_U(long groupId,
                             long userId)
                      throws SystemException
Counts all the message-boards messages where groupId = ? and userId = ?.

Parameters:
groupId - the group id to search with
userId - the user id to search with
Returns:
the number of matching message-boards messages
Throws:
SystemException - if a system exception occurred

filterCountByG_U

public static int filterCountByG_U(long groupId,
                                   long userId)
                            throws SystemException
Filters by the user's permissions and counts all the message-boards messages where groupId = ? and userId = ?.

Parameters:
groupId - the group id to search with
userId - the user id to search with
Returns:
the number of matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

countByG_C

public static int countByG_C(long groupId,
                             long categoryId)
                      throws SystemException
Counts all the message-boards messages where groupId = ? and categoryId = ?.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
Returns:
the number of matching message-boards messages
Throws:
SystemException - if a system exception occurred

filterCountByG_C

public static int filterCountByG_C(long groupId,
                                   long categoryId)
                            throws SystemException
Filters by the user's permissions and counts all the message-boards messages where groupId = ? and categoryId = ?.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
Returns:
the number of matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

countByG_S

public static int countByG_S(long groupId,
                             int status)
                      throws SystemException
Counts all the message-boards messages where groupId = ? and status = ?.

Parameters:
groupId - the group id to search with
status - the status to search with
Returns:
the number of matching message-boards messages
Throws:
SystemException - if a system exception occurred

filterCountByG_S

public static int filterCountByG_S(long groupId,
                                   int status)
                            throws SystemException
Filters by the user's permissions and counts all the message-boards messages where groupId = ? and status = ?.

Parameters:
groupId - the group id to search with
status - the status to search with
Returns:
the number of matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

countByC_S

public static int countByC_S(long companyId,
                             int status)
                      throws SystemException
Counts all the message-boards messages where companyId = ? and status = ?.

Parameters:
companyId - the company id to search with
status - the status to search with
Returns:
the number of matching message-boards messages
Throws:
SystemException - if a system exception occurred

countByC_C

public static int countByC_C(long classNameId,
                             long classPK)
                      throws SystemException
Counts all the message-boards messages where classNameId = ? and classPK = ?.

Parameters:
classNameId - the class name id to search with
classPK - the class p k to search with
Returns:
the number of matching message-boards messages
Throws:
SystemException - if a system exception occurred

countByT_P

public static int countByT_P(long threadId,
                             long parentMessageId)
                      throws SystemException
Counts all the message-boards messages where threadId = ? and parentMessageId = ?.

Parameters:
threadId - the thread id to search with
parentMessageId - the parent message id to search with
Returns:
the number of matching message-boards messages
Throws:
SystemException - if a system exception occurred

countByT_S

public static int countByT_S(long threadId,
                             int status)
                      throws SystemException
Counts all the message-boards messages where threadId = ? and status = ?.

Parameters:
threadId - the thread id to search with
status - the status to search with
Returns:
the number of matching message-boards messages
Throws:
SystemException - if a system exception occurred

countByTR_S

public static int countByTR_S(long threadId,
                              int status)
                       throws SystemException
Counts all the message-boards messages where threadId = ? and status = ?.

Parameters:
threadId - the thread id to search with
status - the status to search with
Returns:
the number of matching message-boards messages
Throws:
SystemException - if a system exception occurred

countByG_U_S

public static int countByG_U_S(long groupId,
                               long userId,
                               int status)
                        throws SystemException
Counts all the message-boards messages where groupId = ? and userId = ? and status = ?.

Parameters:
groupId - the group id to search with
userId - the user id to search with
status - the status to search with
Returns:
the number of matching message-boards messages
Throws:
SystemException - if a system exception occurred

filterCountByG_U_S

public static int filterCountByG_U_S(long groupId,
                                     long userId,
                                     int status)
                              throws SystemException
Filters by the user's permissions and counts all the message-boards messages where groupId = ? and userId = ? and status = ?.

Parameters:
groupId - the group id to search with
userId - the user id to search with
status - the status to search with
Returns:
the number of matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

countByG_C_T

public static int countByG_C_T(long groupId,
                               long categoryId,
                               long threadId)
                        throws SystemException
Counts all the message-boards messages where groupId = ? and categoryId = ? and threadId = ?.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
threadId - the thread id to search with
Returns:
the number of matching message-boards messages
Throws:
SystemException - if a system exception occurred

filterCountByG_C_T

public static int filterCountByG_C_T(long groupId,
                                     long categoryId,
                                     long threadId)
                              throws SystemException
Filters by the user's permissions and counts all the message-boards messages where groupId = ? and categoryId = ? and threadId = ?.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
threadId - the thread id to search with
Returns:
the number of matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

countByG_C_S

public static int countByG_C_S(long groupId,
                               long categoryId,
                               int status)
                        throws SystemException
Counts all the message-boards messages where groupId = ? and categoryId = ? and status = ?.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
status - the status to search with
Returns:
the number of matching message-boards messages
Throws:
SystemException - if a system exception occurred

filterCountByG_C_S

public static int filterCountByG_C_S(long groupId,
                                     long categoryId,
                                     int status)
                              throws SystemException
Filters by the user's permissions and counts all the message-boards messages where groupId = ? and categoryId = ? and status = ?.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
status - the status to search with
Returns:
the number of matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

countByC_C_S

public static int countByC_C_S(long classNameId,
                               long classPK,
                               int status)
                        throws SystemException
Counts all the message-boards messages where classNameId = ? and classPK = ? and status = ?.

Parameters:
classNameId - the class name id to search with
classPK - the class p k to search with
status - the status to search with
Returns:
the number of matching message-boards messages
Throws:
SystemException - if a system exception occurred

countByG_C_T_S

public static int countByG_C_T_S(long groupId,
                                 long categoryId,
                                 long threadId,
                                 int status)
                          throws SystemException
Counts all the message-boards messages where groupId = ? and categoryId = ? and threadId = ? and status = ?.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
threadId - the thread id to search with
status - the status to search with
Returns:
the number of matching message-boards messages
Throws:
SystemException - if a system exception occurred

filterCountByG_C_T_S

public static int filterCountByG_C_T_S(long groupId,
                                       long categoryId,
                                       long threadId,
                                       int status)
                                throws SystemException
Filters by the user's permissions and counts all the message-boards messages where groupId = ? and categoryId = ? and threadId = ? and status = ?.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
threadId - the thread id to search with
status - the status to search with
Returns:
the number of matching message-boards messages that the user has permission to view
Throws:
SystemException - if a system exception occurred

countAll

public static int countAll()
                    throws SystemException
Counts all the message-boards messages.

Returns:
the number of message-boards messages
Throws:
SystemException - if a system exception occurred

getPersistence

public static MBMessagePersistence getPersistence()

setPersistence

public void setPersistence(MBMessagePersistence persistence)

Liferay 6.0.5