001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.messageboards.service.persistence;
016    
017    import com.liferay.portal.service.persistence.BasePersistence;
018    
019    import com.liferay.portlet.messageboards.model.MBMessage;
020    
021    /**
022     * @author    Brian Wing Shun Chan
023     * @see       MBMessagePersistenceImpl
024     * @see       MBMessageUtil
025     * @generated
026     */
027    public interface MBMessagePersistence extends BasePersistence<MBMessage> {
028            public void cacheResult(
029                    com.liferay.portlet.messageboards.model.MBMessage mbMessage);
030    
031            public void cacheResult(
032                    java.util.List<com.liferay.portlet.messageboards.model.MBMessage> mbMessages);
033    
034            public com.liferay.portlet.messageboards.model.MBMessage create(
035                    long messageId);
036    
037            public com.liferay.portlet.messageboards.model.MBMessage remove(
038                    long messageId)
039                    throws com.liferay.portal.kernel.exception.SystemException,
040                            com.liferay.portlet.messageboards.NoSuchMessageException;
041    
042            public com.liferay.portlet.messageboards.model.MBMessage updateImpl(
043                    com.liferay.portlet.messageboards.model.MBMessage mbMessage,
044                    boolean merge)
045                    throws com.liferay.portal.kernel.exception.SystemException;
046    
047            public com.liferay.portlet.messageboards.model.MBMessage findByPrimaryKey(
048                    long messageId)
049                    throws com.liferay.portal.kernel.exception.SystemException,
050                            com.liferay.portlet.messageboards.NoSuchMessageException;
051    
052            public com.liferay.portlet.messageboards.model.MBMessage fetchByPrimaryKey(
053                    long messageId)
054                    throws com.liferay.portal.kernel.exception.SystemException;
055    
056            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByUuid(
057                    java.lang.String uuid)
058                    throws com.liferay.portal.kernel.exception.SystemException;
059    
060            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByUuid(
061                    java.lang.String uuid, int start, int end)
062                    throws com.liferay.portal.kernel.exception.SystemException;
063    
064            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByUuid(
065                    java.lang.String uuid, int start, int end,
066                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
067                    throws com.liferay.portal.kernel.exception.SystemException;
068    
069            public com.liferay.portlet.messageboards.model.MBMessage findByUuid_First(
070                    java.lang.String uuid,
071                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
072                    throws com.liferay.portal.kernel.exception.SystemException,
073                            com.liferay.portlet.messageboards.NoSuchMessageException;
074    
075            public com.liferay.portlet.messageboards.model.MBMessage findByUuid_Last(
076                    java.lang.String uuid,
077                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
078                    throws com.liferay.portal.kernel.exception.SystemException,
079                            com.liferay.portlet.messageboards.NoSuchMessageException;
080    
081            public com.liferay.portlet.messageboards.model.MBMessage[] findByUuid_PrevAndNext(
082                    long messageId, java.lang.String uuid,
083                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
084                    throws com.liferay.portal.kernel.exception.SystemException,
085                            com.liferay.portlet.messageboards.NoSuchMessageException;
086    
087            public com.liferay.portlet.messageboards.model.MBMessage findByUUID_G(
088                    java.lang.String uuid, long groupId)
089                    throws com.liferay.portal.kernel.exception.SystemException,
090                            com.liferay.portlet.messageboards.NoSuchMessageException;
091    
092            public com.liferay.portlet.messageboards.model.MBMessage fetchByUUID_G(
093                    java.lang.String uuid, long groupId)
094                    throws com.liferay.portal.kernel.exception.SystemException;
095    
096            public com.liferay.portlet.messageboards.model.MBMessage fetchByUUID_G(
097                    java.lang.String uuid, long groupId, boolean retrieveFromCache)
098                    throws com.liferay.portal.kernel.exception.SystemException;
099    
100            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByGroupId(
101                    long groupId)
102                    throws com.liferay.portal.kernel.exception.SystemException;
103    
104            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByGroupId(
105                    long groupId, int start, int end)
106                    throws com.liferay.portal.kernel.exception.SystemException;
107    
108            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByGroupId(
109                    long groupId, int start, int end,
110                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
111                    throws com.liferay.portal.kernel.exception.SystemException;
112    
113            public com.liferay.portlet.messageboards.model.MBMessage findByGroupId_First(
114                    long groupId,
115                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
116                    throws com.liferay.portal.kernel.exception.SystemException,
117                            com.liferay.portlet.messageboards.NoSuchMessageException;
118    
119            public com.liferay.portlet.messageboards.model.MBMessage findByGroupId_Last(
120                    long groupId,
121                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
122                    throws com.liferay.portal.kernel.exception.SystemException,
123                            com.liferay.portlet.messageboards.NoSuchMessageException;
124    
125            public com.liferay.portlet.messageboards.model.MBMessage[] findByGroupId_PrevAndNext(
126                    long messageId, long groupId,
127                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
128                    throws com.liferay.portal.kernel.exception.SystemException,
129                            com.liferay.portlet.messageboards.NoSuchMessageException;
130    
131            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> filterFindByGroupId(
132                    long groupId)
133                    throws com.liferay.portal.kernel.exception.SystemException;
134    
135            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> filterFindByGroupId(
136                    long groupId, int start, int end)
137                    throws com.liferay.portal.kernel.exception.SystemException;
138    
139            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> filterFindByGroupId(
140                    long groupId, int start, int end,
141                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
142                    throws com.liferay.portal.kernel.exception.SystemException;
143    
144            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByCompanyId(
145                    long companyId)
146                    throws com.liferay.portal.kernel.exception.SystemException;
147    
148            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByCompanyId(
149                    long companyId, int start, int end)
150                    throws com.liferay.portal.kernel.exception.SystemException;
151    
152            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByCompanyId(
153                    long companyId, int start, int end,
154                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
155                    throws com.liferay.portal.kernel.exception.SystemException;
156    
157            public com.liferay.portlet.messageboards.model.MBMessage findByCompanyId_First(
158                    long companyId,
159                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
160                    throws com.liferay.portal.kernel.exception.SystemException,
161                            com.liferay.portlet.messageboards.NoSuchMessageException;
162    
163            public com.liferay.portlet.messageboards.model.MBMessage findByCompanyId_Last(
164                    long companyId,
165                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
166                    throws com.liferay.portal.kernel.exception.SystemException,
167                            com.liferay.portlet.messageboards.NoSuchMessageException;
168    
169            public com.liferay.portlet.messageboards.model.MBMessage[] findByCompanyId_PrevAndNext(
170                    long messageId, long companyId,
171                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
172                    throws com.liferay.portal.kernel.exception.SystemException,
173                            com.liferay.portlet.messageboards.NoSuchMessageException;
174    
175            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByThreadId(
176                    long threadId)
177                    throws com.liferay.portal.kernel.exception.SystemException;
178    
179            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByThreadId(
180                    long threadId, int start, int end)
181                    throws com.liferay.portal.kernel.exception.SystemException;
182    
183            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByThreadId(
184                    long threadId, int start, int end,
185                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
186                    throws com.liferay.portal.kernel.exception.SystemException;
187    
188            public com.liferay.portlet.messageboards.model.MBMessage findByThreadId_First(
189                    long threadId,
190                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
191                    throws com.liferay.portal.kernel.exception.SystemException,
192                            com.liferay.portlet.messageboards.NoSuchMessageException;
193    
194            public com.liferay.portlet.messageboards.model.MBMessage findByThreadId_Last(
195                    long threadId,
196                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
197                    throws com.liferay.portal.kernel.exception.SystemException,
198                            com.liferay.portlet.messageboards.NoSuchMessageException;
199    
200            public com.liferay.portlet.messageboards.model.MBMessage[] findByThreadId_PrevAndNext(
201                    long messageId, long threadId,
202                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
203                    throws com.liferay.portal.kernel.exception.SystemException,
204                            com.liferay.portlet.messageboards.NoSuchMessageException;
205    
206            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByThreadReplies(
207                    long threadId)
208                    throws com.liferay.portal.kernel.exception.SystemException;
209    
210            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByThreadReplies(
211                    long threadId, int start, int end)
212                    throws com.liferay.portal.kernel.exception.SystemException;
213    
214            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByThreadReplies(
215                    long threadId, int start, int end,
216                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
217                    throws com.liferay.portal.kernel.exception.SystemException;
218    
219            public com.liferay.portlet.messageboards.model.MBMessage findByThreadReplies_First(
220                    long threadId,
221                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
222                    throws com.liferay.portal.kernel.exception.SystemException,
223                            com.liferay.portlet.messageboards.NoSuchMessageException;
224    
225            public com.liferay.portlet.messageboards.model.MBMessage findByThreadReplies_Last(
226                    long threadId,
227                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
228                    throws com.liferay.portal.kernel.exception.SystemException,
229                            com.liferay.portlet.messageboards.NoSuchMessageException;
230    
231            public com.liferay.portlet.messageboards.model.MBMessage[] findByThreadReplies_PrevAndNext(
232                    long messageId, long threadId,
233                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
234                    throws com.liferay.portal.kernel.exception.SystemException,
235                            com.liferay.portlet.messageboards.NoSuchMessageException;
236    
237            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByUserId(
238                    long userId) throws com.liferay.portal.kernel.exception.SystemException;
239    
240            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByUserId(
241                    long userId, int start, int end)
242                    throws com.liferay.portal.kernel.exception.SystemException;
243    
244            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByUserId(
245                    long userId, int start, int end,
246                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
247                    throws com.liferay.portal.kernel.exception.SystemException;
248    
249            public com.liferay.portlet.messageboards.model.MBMessage findByUserId_First(
250                    long userId,
251                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
252                    throws com.liferay.portal.kernel.exception.SystemException,
253                            com.liferay.portlet.messageboards.NoSuchMessageException;
254    
255            public com.liferay.portlet.messageboards.model.MBMessage findByUserId_Last(
256                    long userId,
257                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
258                    throws com.liferay.portal.kernel.exception.SystemException,
259                            com.liferay.portlet.messageboards.NoSuchMessageException;
260    
261            public com.liferay.portlet.messageboards.model.MBMessage[] findByUserId_PrevAndNext(
262                    long messageId, long userId,
263                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
264                    throws com.liferay.portal.kernel.exception.SystemException,
265                            com.liferay.portlet.messageboards.NoSuchMessageException;
266    
267            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByG_U(
268                    long groupId, long userId)
269                    throws com.liferay.portal.kernel.exception.SystemException;
270    
271            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByG_U(
272                    long groupId, long userId, int start, int end)
273                    throws com.liferay.portal.kernel.exception.SystemException;
274    
275            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByG_U(
276                    long groupId, long userId, int start, int end,
277                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
278                    throws com.liferay.portal.kernel.exception.SystemException;
279    
280            public com.liferay.portlet.messageboards.model.MBMessage findByG_U_First(
281                    long groupId, long userId,
282                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
283                    throws com.liferay.portal.kernel.exception.SystemException,
284                            com.liferay.portlet.messageboards.NoSuchMessageException;
285    
286            public com.liferay.portlet.messageboards.model.MBMessage findByG_U_Last(
287                    long groupId, long userId,
288                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
289                    throws com.liferay.portal.kernel.exception.SystemException,
290                            com.liferay.portlet.messageboards.NoSuchMessageException;
291    
292            public com.liferay.portlet.messageboards.model.MBMessage[] findByG_U_PrevAndNext(
293                    long messageId, long groupId, long userId,
294                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
295                    throws com.liferay.portal.kernel.exception.SystemException,
296                            com.liferay.portlet.messageboards.NoSuchMessageException;
297    
298            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> filterFindByG_U(
299                    long groupId, long userId)
300                    throws com.liferay.portal.kernel.exception.SystemException;
301    
302            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> filterFindByG_U(
303                    long groupId, long userId, int start, int end)
304                    throws com.liferay.portal.kernel.exception.SystemException;
305    
306            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> filterFindByG_U(
307                    long groupId, long userId, int start, int end,
308                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
309                    throws com.liferay.portal.kernel.exception.SystemException;
310    
311            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByG_C(
312                    long groupId, long categoryId)
313                    throws com.liferay.portal.kernel.exception.SystemException;
314    
315            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByG_C(
316                    long groupId, long categoryId, int start, int end)
317                    throws com.liferay.portal.kernel.exception.SystemException;
318    
319            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByG_C(
320                    long groupId, long categoryId, int start, int end,
321                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
322                    throws com.liferay.portal.kernel.exception.SystemException;
323    
324            public com.liferay.portlet.messageboards.model.MBMessage findByG_C_First(
325                    long groupId, long categoryId,
326                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
327                    throws com.liferay.portal.kernel.exception.SystemException,
328                            com.liferay.portlet.messageboards.NoSuchMessageException;
329    
330            public com.liferay.portlet.messageboards.model.MBMessage findByG_C_Last(
331                    long groupId, long categoryId,
332                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
333                    throws com.liferay.portal.kernel.exception.SystemException,
334                            com.liferay.portlet.messageboards.NoSuchMessageException;
335    
336            public com.liferay.portlet.messageboards.model.MBMessage[] findByG_C_PrevAndNext(
337                    long messageId, long groupId, long categoryId,
338                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
339                    throws com.liferay.portal.kernel.exception.SystemException,
340                            com.liferay.portlet.messageboards.NoSuchMessageException;
341    
342            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> filterFindByG_C(
343                    long groupId, long categoryId)
344                    throws com.liferay.portal.kernel.exception.SystemException;
345    
346            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> filterFindByG_C(
347                    long groupId, long categoryId, int start, int end)
348                    throws com.liferay.portal.kernel.exception.SystemException;
349    
350            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> filterFindByG_C(
351                    long groupId, long categoryId, int start, int end,
352                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
353                    throws com.liferay.portal.kernel.exception.SystemException;
354    
355            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByG_S(
356                    long groupId, int status)
357                    throws com.liferay.portal.kernel.exception.SystemException;
358    
359            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByG_S(
360                    long groupId, int status, int start, int end)
361                    throws com.liferay.portal.kernel.exception.SystemException;
362    
363            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByG_S(
364                    long groupId, int status, int start, int end,
365                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
366                    throws com.liferay.portal.kernel.exception.SystemException;
367    
368            public com.liferay.portlet.messageboards.model.MBMessage findByG_S_First(
369                    long groupId, int status,
370                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
371                    throws com.liferay.portal.kernel.exception.SystemException,
372                            com.liferay.portlet.messageboards.NoSuchMessageException;
373    
374            public com.liferay.portlet.messageboards.model.MBMessage findByG_S_Last(
375                    long groupId, int status,
376                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
377                    throws com.liferay.portal.kernel.exception.SystemException,
378                            com.liferay.portlet.messageboards.NoSuchMessageException;
379    
380            public com.liferay.portlet.messageboards.model.MBMessage[] findByG_S_PrevAndNext(
381                    long messageId, long groupId, int status,
382                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
383                    throws com.liferay.portal.kernel.exception.SystemException,
384                            com.liferay.portlet.messageboards.NoSuchMessageException;
385    
386            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> filterFindByG_S(
387                    long groupId, int status)
388                    throws com.liferay.portal.kernel.exception.SystemException;
389    
390            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> filterFindByG_S(
391                    long groupId, int status, int start, int end)
392                    throws com.liferay.portal.kernel.exception.SystemException;
393    
394            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> filterFindByG_S(
395                    long groupId, int status, int start, int end,
396                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
397                    throws com.liferay.portal.kernel.exception.SystemException;
398    
399            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByC_S(
400                    long companyId, int status)
401                    throws com.liferay.portal.kernel.exception.SystemException;
402    
403            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByC_S(
404                    long companyId, int status, int start, int end)
405                    throws com.liferay.portal.kernel.exception.SystemException;
406    
407            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByC_S(
408                    long companyId, int status, int start, int end,
409                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
410                    throws com.liferay.portal.kernel.exception.SystemException;
411    
412            public com.liferay.portlet.messageboards.model.MBMessage findByC_S_First(
413                    long companyId, int status,
414                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
415                    throws com.liferay.portal.kernel.exception.SystemException,
416                            com.liferay.portlet.messageboards.NoSuchMessageException;
417    
418            public com.liferay.portlet.messageboards.model.MBMessage findByC_S_Last(
419                    long companyId, int status,
420                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
421                    throws com.liferay.portal.kernel.exception.SystemException,
422                            com.liferay.portlet.messageboards.NoSuchMessageException;
423    
424            public com.liferay.portlet.messageboards.model.MBMessage[] findByC_S_PrevAndNext(
425                    long messageId, long companyId, int status,
426                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
427                    throws com.liferay.portal.kernel.exception.SystemException,
428                            com.liferay.portlet.messageboards.NoSuchMessageException;
429    
430            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByC_C(
431                    long classNameId, long classPK)
432                    throws com.liferay.portal.kernel.exception.SystemException;
433    
434            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByC_C(
435                    long classNameId, long classPK, int start, int end)
436                    throws com.liferay.portal.kernel.exception.SystemException;
437    
438            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByC_C(
439                    long classNameId, long classPK, int start, int end,
440                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
441                    throws com.liferay.portal.kernel.exception.SystemException;
442    
443            public com.liferay.portlet.messageboards.model.MBMessage findByC_C_First(
444                    long classNameId, long classPK,
445                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
446                    throws com.liferay.portal.kernel.exception.SystemException,
447                            com.liferay.portlet.messageboards.NoSuchMessageException;
448    
449            public com.liferay.portlet.messageboards.model.MBMessage findByC_C_Last(
450                    long classNameId, long classPK,
451                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
452                    throws com.liferay.portal.kernel.exception.SystemException,
453                            com.liferay.portlet.messageboards.NoSuchMessageException;
454    
455            public com.liferay.portlet.messageboards.model.MBMessage[] findByC_C_PrevAndNext(
456                    long messageId, long classNameId, long classPK,
457                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
458                    throws com.liferay.portal.kernel.exception.SystemException,
459                            com.liferay.portlet.messageboards.NoSuchMessageException;
460    
461            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByT_P(
462                    long threadId, long parentMessageId)
463                    throws com.liferay.portal.kernel.exception.SystemException;
464    
465            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByT_P(
466                    long threadId, long parentMessageId, int start, int end)
467                    throws com.liferay.portal.kernel.exception.SystemException;
468    
469            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByT_P(
470                    long threadId, long parentMessageId, int start, int end,
471                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
472                    throws com.liferay.portal.kernel.exception.SystemException;
473    
474            public com.liferay.portlet.messageboards.model.MBMessage findByT_P_First(
475                    long threadId, long parentMessageId,
476                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
477                    throws com.liferay.portal.kernel.exception.SystemException,
478                            com.liferay.portlet.messageboards.NoSuchMessageException;
479    
480            public com.liferay.portlet.messageboards.model.MBMessage findByT_P_Last(
481                    long threadId, long parentMessageId,
482                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
483                    throws com.liferay.portal.kernel.exception.SystemException,
484                            com.liferay.portlet.messageboards.NoSuchMessageException;
485    
486            public com.liferay.portlet.messageboards.model.MBMessage[] findByT_P_PrevAndNext(
487                    long messageId, long threadId, long parentMessageId,
488                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
489                    throws com.liferay.portal.kernel.exception.SystemException,
490                            com.liferay.portlet.messageboards.NoSuchMessageException;
491    
492            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByT_S(
493                    long threadId, int status)
494                    throws com.liferay.portal.kernel.exception.SystemException;
495    
496            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByT_S(
497                    long threadId, int status, int start, int end)
498                    throws com.liferay.portal.kernel.exception.SystemException;
499    
500            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByT_S(
501                    long threadId, int status, int start, int end,
502                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
503                    throws com.liferay.portal.kernel.exception.SystemException;
504    
505            public com.liferay.portlet.messageboards.model.MBMessage findByT_S_First(
506                    long threadId, int status,
507                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
508                    throws com.liferay.portal.kernel.exception.SystemException,
509                            com.liferay.portlet.messageboards.NoSuchMessageException;
510    
511            public com.liferay.portlet.messageboards.model.MBMessage findByT_S_Last(
512                    long threadId, int status,
513                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
514                    throws com.liferay.portal.kernel.exception.SystemException,
515                            com.liferay.portlet.messageboards.NoSuchMessageException;
516    
517            public com.liferay.portlet.messageboards.model.MBMessage[] findByT_S_PrevAndNext(
518                    long messageId, long threadId, int status,
519                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
520                    throws com.liferay.portal.kernel.exception.SystemException,
521                            com.liferay.portlet.messageboards.NoSuchMessageException;
522    
523            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByTR_S(
524                    long threadId, int status)
525                    throws com.liferay.portal.kernel.exception.SystemException;
526    
527            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByTR_S(
528                    long threadId, int status, int start, int end)
529                    throws com.liferay.portal.kernel.exception.SystemException;
530    
531            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByTR_S(
532                    long threadId, int status, int start, int end,
533                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
534                    throws com.liferay.portal.kernel.exception.SystemException;
535    
536            public com.liferay.portlet.messageboards.model.MBMessage findByTR_S_First(
537                    long threadId, int status,
538                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
539                    throws com.liferay.portal.kernel.exception.SystemException,
540                            com.liferay.portlet.messageboards.NoSuchMessageException;
541    
542            public com.liferay.portlet.messageboards.model.MBMessage findByTR_S_Last(
543                    long threadId, int status,
544                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
545                    throws com.liferay.portal.kernel.exception.SystemException,
546                            com.liferay.portlet.messageboards.NoSuchMessageException;
547    
548            public com.liferay.portlet.messageboards.model.MBMessage[] findByTR_S_PrevAndNext(
549                    long messageId, long threadId, int status,
550                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
551                    throws com.liferay.portal.kernel.exception.SystemException,
552                            com.liferay.portlet.messageboards.NoSuchMessageException;
553    
554            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByG_U_S(
555                    long groupId, long userId, int status)
556                    throws com.liferay.portal.kernel.exception.SystemException;
557    
558            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByG_U_S(
559                    long groupId, long userId, int status, int start, int end)
560                    throws com.liferay.portal.kernel.exception.SystemException;
561    
562            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByG_U_S(
563                    long groupId, long userId, int status, int start, int end,
564                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
565                    throws com.liferay.portal.kernel.exception.SystemException;
566    
567            public com.liferay.portlet.messageboards.model.MBMessage findByG_U_S_First(
568                    long groupId, long userId, int status,
569                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
570                    throws com.liferay.portal.kernel.exception.SystemException,
571                            com.liferay.portlet.messageboards.NoSuchMessageException;
572    
573            public com.liferay.portlet.messageboards.model.MBMessage findByG_U_S_Last(
574                    long groupId, long userId, int status,
575                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
576                    throws com.liferay.portal.kernel.exception.SystemException,
577                            com.liferay.portlet.messageboards.NoSuchMessageException;
578    
579            public com.liferay.portlet.messageboards.model.MBMessage[] findByG_U_S_PrevAndNext(
580                    long messageId, long groupId, long userId, int status,
581                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
582                    throws com.liferay.portal.kernel.exception.SystemException,
583                            com.liferay.portlet.messageboards.NoSuchMessageException;
584    
585            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> filterFindByG_U_S(
586                    long groupId, long userId, int status)
587                    throws com.liferay.portal.kernel.exception.SystemException;
588    
589            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> filterFindByG_U_S(
590                    long groupId, long userId, int status, int start, int end)
591                    throws com.liferay.portal.kernel.exception.SystemException;
592    
593            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> filterFindByG_U_S(
594                    long groupId, long userId, int status, int start, int end,
595                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
596                    throws com.liferay.portal.kernel.exception.SystemException;
597    
598            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByG_C_T(
599                    long groupId, long categoryId, long threadId)
600                    throws com.liferay.portal.kernel.exception.SystemException;
601    
602            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByG_C_T(
603                    long groupId, long categoryId, long threadId, int start, int end)
604                    throws com.liferay.portal.kernel.exception.SystemException;
605    
606            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByG_C_T(
607                    long groupId, long categoryId, long threadId, int start, int end,
608                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
609                    throws com.liferay.portal.kernel.exception.SystemException;
610    
611            public com.liferay.portlet.messageboards.model.MBMessage findByG_C_T_First(
612                    long groupId, long categoryId, long threadId,
613                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
614                    throws com.liferay.portal.kernel.exception.SystemException,
615                            com.liferay.portlet.messageboards.NoSuchMessageException;
616    
617            public com.liferay.portlet.messageboards.model.MBMessage findByG_C_T_Last(
618                    long groupId, long categoryId, long threadId,
619                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
620                    throws com.liferay.portal.kernel.exception.SystemException,
621                            com.liferay.portlet.messageboards.NoSuchMessageException;
622    
623            public com.liferay.portlet.messageboards.model.MBMessage[] findByG_C_T_PrevAndNext(
624                    long messageId, long groupId, long categoryId, long threadId,
625                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
626                    throws com.liferay.portal.kernel.exception.SystemException,
627                            com.liferay.portlet.messageboards.NoSuchMessageException;
628    
629            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> filterFindByG_C_T(
630                    long groupId, long categoryId, long threadId)
631                    throws com.liferay.portal.kernel.exception.SystemException;
632    
633            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> filterFindByG_C_T(
634                    long groupId, long categoryId, long threadId, int start, int end)
635                    throws com.liferay.portal.kernel.exception.SystemException;
636    
637            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> filterFindByG_C_T(
638                    long groupId, long categoryId, long threadId, int start, int end,
639                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
640                    throws com.liferay.portal.kernel.exception.SystemException;
641    
642            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByG_C_S(
643                    long groupId, long categoryId, int status)
644                    throws com.liferay.portal.kernel.exception.SystemException;
645    
646            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByG_C_S(
647                    long groupId, long categoryId, int status, int start, int end)
648                    throws com.liferay.portal.kernel.exception.SystemException;
649    
650            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByG_C_S(
651                    long groupId, long categoryId, int status, int start, int end,
652                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
653                    throws com.liferay.portal.kernel.exception.SystemException;
654    
655            public com.liferay.portlet.messageboards.model.MBMessage findByG_C_S_First(
656                    long groupId, long categoryId, int status,
657                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
658                    throws com.liferay.portal.kernel.exception.SystemException,
659                            com.liferay.portlet.messageboards.NoSuchMessageException;
660    
661            public com.liferay.portlet.messageboards.model.MBMessage findByG_C_S_Last(
662                    long groupId, long categoryId, int status,
663                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
664                    throws com.liferay.portal.kernel.exception.SystemException,
665                            com.liferay.portlet.messageboards.NoSuchMessageException;
666    
667            public com.liferay.portlet.messageboards.model.MBMessage[] findByG_C_S_PrevAndNext(
668                    long messageId, long groupId, long categoryId, int status,
669                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
670                    throws com.liferay.portal.kernel.exception.SystemException,
671                            com.liferay.portlet.messageboards.NoSuchMessageException;
672    
673            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> filterFindByG_C_S(
674                    long groupId, long categoryId, int status)
675                    throws com.liferay.portal.kernel.exception.SystemException;
676    
677            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> filterFindByG_C_S(
678                    long groupId, long categoryId, int status, int start, int end)
679                    throws com.liferay.portal.kernel.exception.SystemException;
680    
681            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> filterFindByG_C_S(
682                    long groupId, long categoryId, int status, int start, int end,
683                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
684                    throws com.liferay.portal.kernel.exception.SystemException;
685    
686            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByC_C_S(
687                    long classNameId, long classPK, int status)
688                    throws com.liferay.portal.kernel.exception.SystemException;
689    
690            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByC_C_S(
691                    long classNameId, long classPK, int status, int start, int end)
692                    throws com.liferay.portal.kernel.exception.SystemException;
693    
694            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByC_C_S(
695                    long classNameId, long classPK, int status, int start, int end,
696                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
697                    throws com.liferay.portal.kernel.exception.SystemException;
698    
699            public com.liferay.portlet.messageboards.model.MBMessage findByC_C_S_First(
700                    long classNameId, long classPK, int status,
701                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
702                    throws com.liferay.portal.kernel.exception.SystemException,
703                            com.liferay.portlet.messageboards.NoSuchMessageException;
704    
705            public com.liferay.portlet.messageboards.model.MBMessage findByC_C_S_Last(
706                    long classNameId, long classPK, int status,
707                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
708                    throws com.liferay.portal.kernel.exception.SystemException,
709                            com.liferay.portlet.messageboards.NoSuchMessageException;
710    
711            public com.liferay.portlet.messageboards.model.MBMessage[] findByC_C_S_PrevAndNext(
712                    long messageId, long classNameId, long classPK, int status,
713                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
714                    throws com.liferay.portal.kernel.exception.SystemException,
715                            com.liferay.portlet.messageboards.NoSuchMessageException;
716    
717            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByG_C_T_S(
718                    long groupId, long categoryId, long threadId, int status)
719                    throws com.liferay.portal.kernel.exception.SystemException;
720    
721            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByG_C_T_S(
722                    long groupId, long categoryId, long threadId, int status, int start,
723                    int end) throws com.liferay.portal.kernel.exception.SystemException;
724    
725            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findByG_C_T_S(
726                    long groupId, long categoryId, long threadId, int status, int start,
727                    int end,
728                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
729                    throws com.liferay.portal.kernel.exception.SystemException;
730    
731            public com.liferay.portlet.messageboards.model.MBMessage findByG_C_T_S_First(
732                    long groupId, long categoryId, long threadId, int status,
733                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
734                    throws com.liferay.portal.kernel.exception.SystemException,
735                            com.liferay.portlet.messageboards.NoSuchMessageException;
736    
737            public com.liferay.portlet.messageboards.model.MBMessage findByG_C_T_S_Last(
738                    long groupId, long categoryId, long threadId, int status,
739                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
740                    throws com.liferay.portal.kernel.exception.SystemException,
741                            com.liferay.portlet.messageboards.NoSuchMessageException;
742    
743            public com.liferay.portlet.messageboards.model.MBMessage[] findByG_C_T_S_PrevAndNext(
744                    long messageId, long groupId, long categoryId, long threadId,
745                    int status,
746                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
747                    throws com.liferay.portal.kernel.exception.SystemException,
748                            com.liferay.portlet.messageboards.NoSuchMessageException;
749    
750            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> filterFindByG_C_T_S(
751                    long groupId, long categoryId, long threadId, int status)
752                    throws com.liferay.portal.kernel.exception.SystemException;
753    
754            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> filterFindByG_C_T_S(
755                    long groupId, long categoryId, long threadId, int status, int start,
756                    int end) throws com.liferay.portal.kernel.exception.SystemException;
757    
758            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> filterFindByG_C_T_S(
759                    long groupId, long categoryId, long threadId, int status, int start,
760                    int end,
761                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
762                    throws com.liferay.portal.kernel.exception.SystemException;
763    
764            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findAll()
765                    throws com.liferay.portal.kernel.exception.SystemException;
766    
767            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findAll(
768                    int start, int end)
769                    throws com.liferay.portal.kernel.exception.SystemException;
770    
771            public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> findAll(
772                    int start, int end,
773                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
774                    throws com.liferay.portal.kernel.exception.SystemException;
775    
776            public void removeByUuid(java.lang.String uuid)
777                    throws com.liferay.portal.kernel.exception.SystemException;
778    
779            public void removeByUUID_G(java.lang.String uuid, long groupId)
780                    throws com.liferay.portal.kernel.exception.SystemException,
781                            com.liferay.portlet.messageboards.NoSuchMessageException;
782    
783            public void removeByGroupId(long groupId)
784                    throws com.liferay.portal.kernel.exception.SystemException;
785    
786            public void removeByCompanyId(long companyId)
787                    throws com.liferay.portal.kernel.exception.SystemException;
788    
789            public void removeByThreadId(long threadId)
790                    throws com.liferay.portal.kernel.exception.SystemException;
791    
792            public void removeByThreadReplies(long threadId)
793                    throws com.liferay.portal.kernel.exception.SystemException;
794    
795            public void removeByUserId(long userId)
796                    throws com.liferay.portal.kernel.exception.SystemException;
797    
798            public void removeByG_U(long groupId, long userId)
799                    throws com.liferay.portal.kernel.exception.SystemException;
800    
801            public void removeByG_C(long groupId, long categoryId)
802                    throws com.liferay.portal.kernel.exception.SystemException;
803    
804            public void removeByG_S(long groupId, int status)
805                    throws com.liferay.portal.kernel.exception.SystemException;
806    
807            public void removeByC_S(long companyId, int status)
808                    throws com.liferay.portal.kernel.exception.SystemException;
809    
810            public void removeByC_C(long classNameId, long classPK)
811                    throws com.liferay.portal.kernel.exception.SystemException;
812    
813            public void removeByT_P(long threadId, long parentMessageId)
814                    throws com.liferay.portal.kernel.exception.SystemException;
815    
816            public void removeByT_S(long threadId, int status)
817                    throws com.liferay.portal.kernel.exception.SystemException;
818    
819            public void removeByTR_S(long threadId, int status)
820                    throws com.liferay.portal.kernel.exception.SystemException;
821    
822            public void removeByG_U_S(long groupId, long userId, int status)
823                    throws com.liferay.portal.kernel.exception.SystemException;
824    
825            public void removeByG_C_T(long groupId, long categoryId, long threadId)
826                    throws com.liferay.portal.kernel.exception.SystemException;
827    
828            public void removeByG_C_S(long groupId, long categoryId, int status)
829                    throws com.liferay.portal.kernel.exception.SystemException;
830    
831            public void removeByC_C_S(long classNameId, long classPK, int status)
832                    throws com.liferay.portal.kernel.exception.SystemException;
833    
834            public void removeByG_C_T_S(long groupId, long categoryId, long threadId,
835                    int status) throws com.liferay.portal.kernel.exception.SystemException;
836    
837            public void removeAll()
838                    throws com.liferay.portal.kernel.exception.SystemException;
839    
840            public int countByUuid(java.lang.String uuid)
841                    throws com.liferay.portal.kernel.exception.SystemException;
842    
843            public int countByUUID_G(java.lang.String uuid, long groupId)
844                    throws com.liferay.portal.kernel.exception.SystemException;
845    
846            public int countByGroupId(long groupId)
847                    throws com.liferay.portal.kernel.exception.SystemException;
848    
849            public int filterCountByGroupId(long groupId)
850                    throws com.liferay.portal.kernel.exception.SystemException;
851    
852            public int countByCompanyId(long companyId)
853                    throws com.liferay.portal.kernel.exception.SystemException;
854    
855            public int countByThreadId(long threadId)
856                    throws com.liferay.portal.kernel.exception.SystemException;
857    
858            public int countByThreadReplies(long threadId)
859                    throws com.liferay.portal.kernel.exception.SystemException;
860    
861            public int countByUserId(long userId)
862                    throws com.liferay.portal.kernel.exception.SystemException;
863    
864            public int countByG_U(long groupId, long userId)
865                    throws com.liferay.portal.kernel.exception.SystemException;
866    
867            public int filterCountByG_U(long groupId, long userId)
868                    throws com.liferay.portal.kernel.exception.SystemException;
869    
870            public int countByG_C(long groupId, long categoryId)
871                    throws com.liferay.portal.kernel.exception.SystemException;
872    
873            public int filterCountByG_C(long groupId, long categoryId)
874                    throws com.liferay.portal.kernel.exception.SystemException;
875    
876            public int countByG_S(long groupId, int status)
877                    throws com.liferay.portal.kernel.exception.SystemException;
878    
879            public int filterCountByG_S(long groupId, int status)
880                    throws com.liferay.portal.kernel.exception.SystemException;
881    
882            public int countByC_S(long companyId, int status)
883                    throws com.liferay.portal.kernel.exception.SystemException;
884    
885            public int countByC_C(long classNameId, long classPK)
886                    throws com.liferay.portal.kernel.exception.SystemException;
887    
888            public int countByT_P(long threadId, long parentMessageId)
889                    throws com.liferay.portal.kernel.exception.SystemException;
890    
891            public int countByT_S(long threadId, int status)
892                    throws com.liferay.portal.kernel.exception.SystemException;
893    
894            public int countByTR_S(long threadId, int status)
895                    throws com.liferay.portal.kernel.exception.SystemException;
896    
897            public int countByG_U_S(long groupId, long userId, int status)
898                    throws com.liferay.portal.kernel.exception.SystemException;
899    
900            public int filterCountByG_U_S(long groupId, long userId, int status)
901                    throws com.liferay.portal.kernel.exception.SystemException;
902    
903            public int countByG_C_T(long groupId, long categoryId, long threadId)
904                    throws com.liferay.portal.kernel.exception.SystemException;
905    
906            public int filterCountByG_C_T(long groupId, long categoryId, long threadId)
907                    throws com.liferay.portal.kernel.exception.SystemException;
908    
909            public int countByG_C_S(long groupId, long categoryId, int status)
910                    throws com.liferay.portal.kernel.exception.SystemException;
911    
912            public int filterCountByG_C_S(long groupId, long categoryId, int status)
913                    throws com.liferay.portal.kernel.exception.SystemException;
914    
915            public int countByC_C_S(long classNameId, long classPK, int status)
916                    throws com.liferay.portal.kernel.exception.SystemException;
917    
918            public int countByG_C_T_S(long groupId, long categoryId, long threadId,
919                    int status) throws com.liferay.portal.kernel.exception.SystemException;
920    
921            public int filterCountByG_C_T_S(long groupId, long categoryId,
922                    long threadId, int status)
923                    throws com.liferay.portal.kernel.exception.SystemException;
924    
925            public int countAll()
926                    throws com.liferay.portal.kernel.exception.SystemException;
927    }