001    /**
002     * Copyright (c) 2000-2013 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.MBMailingList;
020    
021    /**
022     * The persistence interface for the message boards mailing list service.
023     *
024     * <p>
025     * Caching information and settings can be found in <code>portal.properties</code>
026     * </p>
027     *
028     * @author Brian Wing Shun Chan
029     * @see MBMailingListPersistenceImpl
030     * @see MBMailingListUtil
031     * @generated
032     */
033    public interface MBMailingListPersistence extends BasePersistence<MBMailingList> {
034            /*
035             * NOTE FOR DEVELOPERS:
036             *
037             * Never modify or reference this interface directly. Always use {@link MBMailingListUtil} to access the message boards mailing list persistence. Modify <code>service.xml</code> and rerun ServiceBuilder to regenerate this interface.
038             */
039    
040            /**
041            * Caches the message boards mailing list in the entity cache if it is enabled.
042            *
043            * @param mbMailingList the message boards mailing list
044            */
045            public void cacheResult(
046                    com.liferay.portlet.messageboards.model.MBMailingList mbMailingList);
047    
048            /**
049            * Caches the message boards mailing lists in the entity cache if it is enabled.
050            *
051            * @param mbMailingLists the message boards mailing lists
052            */
053            public void cacheResult(
054                    java.util.List<com.liferay.portlet.messageboards.model.MBMailingList> mbMailingLists);
055    
056            /**
057            * Creates a new message boards mailing list with the primary key. Does not add the message boards mailing list to the database.
058            *
059            * @param mailingListId the primary key for the new message boards mailing list
060            * @return the new message boards mailing list
061            */
062            public com.liferay.portlet.messageboards.model.MBMailingList create(
063                    long mailingListId);
064    
065            /**
066            * Removes the message boards mailing list with the primary key from the database. Also notifies the appropriate model listeners.
067            *
068            * @param mailingListId the primary key of the message boards mailing list
069            * @return the message boards mailing list that was removed
070            * @throws com.liferay.portlet.messageboards.NoSuchMailingListException if a message boards mailing list with the primary key could not be found
071            * @throws SystemException if a system exception occurred
072            */
073            public com.liferay.portlet.messageboards.model.MBMailingList remove(
074                    long mailingListId)
075                    throws com.liferay.portal.kernel.exception.SystemException,
076                            com.liferay.portlet.messageboards.NoSuchMailingListException;
077    
078            public com.liferay.portlet.messageboards.model.MBMailingList updateImpl(
079                    com.liferay.portlet.messageboards.model.MBMailingList mbMailingList,
080                    boolean merge)
081                    throws com.liferay.portal.kernel.exception.SystemException;
082    
083            /**
084            * Returns the message boards mailing list with the primary key or throws a {@link com.liferay.portlet.messageboards.NoSuchMailingListException} if it could not be found.
085            *
086            * @param mailingListId the primary key of the message boards mailing list
087            * @return the message boards mailing list
088            * @throws com.liferay.portlet.messageboards.NoSuchMailingListException if a message boards mailing list with the primary key could not be found
089            * @throws SystemException if a system exception occurred
090            */
091            public com.liferay.portlet.messageboards.model.MBMailingList findByPrimaryKey(
092                    long mailingListId)
093                    throws com.liferay.portal.kernel.exception.SystemException,
094                            com.liferay.portlet.messageboards.NoSuchMailingListException;
095    
096            /**
097            * Returns the message boards mailing list with the primary key or returns <code>null</code> if it could not be found.
098            *
099            * @param mailingListId the primary key of the message boards mailing list
100            * @return the message boards mailing list, or <code>null</code> if a message boards mailing list with the primary key could not be found
101            * @throws SystemException if a system exception occurred
102            */
103            public com.liferay.portlet.messageboards.model.MBMailingList fetchByPrimaryKey(
104                    long mailingListId)
105                    throws com.liferay.portal.kernel.exception.SystemException;
106    
107            /**
108            * Returns all the message boards mailing lists where uuid = &#63;.
109            *
110            * @param uuid the uuid
111            * @return the matching message boards mailing lists
112            * @throws SystemException if a system exception occurred
113            */
114            public java.util.List<com.liferay.portlet.messageboards.model.MBMailingList> findByUuid(
115                    java.lang.String uuid)
116                    throws com.liferay.portal.kernel.exception.SystemException;
117    
118            /**
119            * Returns a range of all the message boards mailing lists where uuid = &#63;.
120            *
121            * <p>
122            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
123            * </p>
124            *
125            * @param uuid the uuid
126            * @param start the lower bound of the range of message boards mailing lists
127            * @param end the upper bound of the range of message boards mailing lists (not inclusive)
128            * @return the range of matching message boards mailing lists
129            * @throws SystemException if a system exception occurred
130            */
131            public java.util.List<com.liferay.portlet.messageboards.model.MBMailingList> findByUuid(
132                    java.lang.String uuid, int start, int end)
133                    throws com.liferay.portal.kernel.exception.SystemException;
134    
135            /**
136            * Returns an ordered range of all the message boards mailing lists where uuid = &#63;.
137            *
138            * <p>
139            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
140            * </p>
141            *
142            * @param uuid the uuid
143            * @param start the lower bound of the range of message boards mailing lists
144            * @param end the upper bound of the range of message boards mailing lists (not inclusive)
145            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
146            * @return the ordered range of matching message boards mailing lists
147            * @throws SystemException if a system exception occurred
148            */
149            public java.util.List<com.liferay.portlet.messageboards.model.MBMailingList> findByUuid(
150                    java.lang.String uuid, int start, int end,
151                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
152                    throws com.liferay.portal.kernel.exception.SystemException;
153    
154            /**
155            * Returns the first message boards mailing list in the ordered set where uuid = &#63;.
156            *
157            * @param uuid the uuid
158            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
159            * @return the first matching message boards mailing list
160            * @throws com.liferay.portlet.messageboards.NoSuchMailingListException if a matching message boards mailing list could not be found
161            * @throws SystemException if a system exception occurred
162            */
163            public com.liferay.portlet.messageboards.model.MBMailingList findByUuid_First(
164                    java.lang.String uuid,
165                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
166                    throws com.liferay.portal.kernel.exception.SystemException,
167                            com.liferay.portlet.messageboards.NoSuchMailingListException;
168    
169            /**
170            * Returns the first message boards mailing list in the ordered set where uuid = &#63;.
171            *
172            * @param uuid the uuid
173            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
174            * @return the first matching message boards mailing list, or <code>null</code> if a matching message boards mailing list could not be found
175            * @throws SystemException if a system exception occurred
176            */
177            public com.liferay.portlet.messageboards.model.MBMailingList fetchByUuid_First(
178                    java.lang.String uuid,
179                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
180                    throws com.liferay.portal.kernel.exception.SystemException;
181    
182            /**
183            * Returns the last message boards mailing list in the ordered set where uuid = &#63;.
184            *
185            * @param uuid the uuid
186            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
187            * @return the last matching message boards mailing list
188            * @throws com.liferay.portlet.messageboards.NoSuchMailingListException if a matching message boards mailing list could not be found
189            * @throws SystemException if a system exception occurred
190            */
191            public com.liferay.portlet.messageboards.model.MBMailingList findByUuid_Last(
192                    java.lang.String uuid,
193                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
194                    throws com.liferay.portal.kernel.exception.SystemException,
195                            com.liferay.portlet.messageboards.NoSuchMailingListException;
196    
197            /**
198            * Returns the last message boards mailing list in the ordered set where uuid = &#63;.
199            *
200            * @param uuid the uuid
201            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
202            * @return the last matching message boards mailing list, or <code>null</code> if a matching message boards mailing list could not be found
203            * @throws SystemException if a system exception occurred
204            */
205            public com.liferay.portlet.messageboards.model.MBMailingList fetchByUuid_Last(
206                    java.lang.String uuid,
207                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
208                    throws com.liferay.portal.kernel.exception.SystemException;
209    
210            /**
211            * Returns the message boards mailing lists before and after the current message boards mailing list in the ordered set where uuid = &#63;.
212            *
213            * @param mailingListId the primary key of the current message boards mailing list
214            * @param uuid the uuid
215            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
216            * @return the previous, current, and next message boards mailing list
217            * @throws com.liferay.portlet.messageboards.NoSuchMailingListException if a message boards mailing list with the primary key could not be found
218            * @throws SystemException if a system exception occurred
219            */
220            public com.liferay.portlet.messageboards.model.MBMailingList[] findByUuid_PrevAndNext(
221                    long mailingListId, java.lang.String uuid,
222                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
223                    throws com.liferay.portal.kernel.exception.SystemException,
224                            com.liferay.portlet.messageboards.NoSuchMailingListException;
225    
226            /**
227            * Returns the message boards mailing list where uuid = &#63; and groupId = &#63; or throws a {@link com.liferay.portlet.messageboards.NoSuchMailingListException} if it could not be found.
228            *
229            * @param uuid the uuid
230            * @param groupId the group ID
231            * @return the matching message boards mailing list
232            * @throws com.liferay.portlet.messageboards.NoSuchMailingListException if a matching message boards mailing list could not be found
233            * @throws SystemException if a system exception occurred
234            */
235            public com.liferay.portlet.messageboards.model.MBMailingList findByUUID_G(
236                    java.lang.String uuid, long groupId)
237                    throws com.liferay.portal.kernel.exception.SystemException,
238                            com.liferay.portlet.messageboards.NoSuchMailingListException;
239    
240            /**
241            * Returns the message boards mailing list where uuid = &#63; and groupId = &#63; or returns <code>null</code> if it could not be found. Uses the finder cache.
242            *
243            * @param uuid the uuid
244            * @param groupId the group ID
245            * @return the matching message boards mailing list, or <code>null</code> if a matching message boards mailing list could not be found
246            * @throws SystemException if a system exception occurred
247            */
248            public com.liferay.portlet.messageboards.model.MBMailingList fetchByUUID_G(
249                    java.lang.String uuid, long groupId)
250                    throws com.liferay.portal.kernel.exception.SystemException;
251    
252            /**
253            * Returns the message boards mailing list where uuid = &#63; and groupId = &#63; or returns <code>null</code> if it could not be found, optionally using the finder cache.
254            *
255            * @param uuid the uuid
256            * @param groupId the group ID
257            * @param retrieveFromCache whether to use the finder cache
258            * @return the matching message boards mailing list, or <code>null</code> if a matching message boards mailing list could not be found
259            * @throws SystemException if a system exception occurred
260            */
261            public com.liferay.portlet.messageboards.model.MBMailingList fetchByUUID_G(
262                    java.lang.String uuid, long groupId, boolean retrieveFromCache)
263                    throws com.liferay.portal.kernel.exception.SystemException;
264    
265            /**
266            * Returns all the message boards mailing lists where active = &#63;.
267            *
268            * @param active the active
269            * @return the matching message boards mailing lists
270            * @throws SystemException if a system exception occurred
271            */
272            public java.util.List<com.liferay.portlet.messageboards.model.MBMailingList> findByActive(
273                    boolean active)
274                    throws com.liferay.portal.kernel.exception.SystemException;
275    
276            /**
277            * Returns a range of all the message boards mailing lists where active = &#63;.
278            *
279            * <p>
280            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
281            * </p>
282            *
283            * @param active the active
284            * @param start the lower bound of the range of message boards mailing lists
285            * @param end the upper bound of the range of message boards mailing lists (not inclusive)
286            * @return the range of matching message boards mailing lists
287            * @throws SystemException if a system exception occurred
288            */
289            public java.util.List<com.liferay.portlet.messageboards.model.MBMailingList> findByActive(
290                    boolean active, int start, int end)
291                    throws com.liferay.portal.kernel.exception.SystemException;
292    
293            /**
294            * Returns an ordered range of all the message boards mailing lists where active = &#63;.
295            *
296            * <p>
297            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
298            * </p>
299            *
300            * @param active the active
301            * @param start the lower bound of the range of message boards mailing lists
302            * @param end the upper bound of the range of message boards mailing lists (not inclusive)
303            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
304            * @return the ordered range of matching message boards mailing lists
305            * @throws SystemException if a system exception occurred
306            */
307            public java.util.List<com.liferay.portlet.messageboards.model.MBMailingList> findByActive(
308                    boolean active, int start, int end,
309                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
310                    throws com.liferay.portal.kernel.exception.SystemException;
311    
312            /**
313            * Returns the first message boards mailing list in the ordered set where active = &#63;.
314            *
315            * @param active the active
316            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
317            * @return the first matching message boards mailing list
318            * @throws com.liferay.portlet.messageboards.NoSuchMailingListException if a matching message boards mailing list could not be found
319            * @throws SystemException if a system exception occurred
320            */
321            public com.liferay.portlet.messageboards.model.MBMailingList findByActive_First(
322                    boolean active,
323                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
324                    throws com.liferay.portal.kernel.exception.SystemException,
325                            com.liferay.portlet.messageboards.NoSuchMailingListException;
326    
327            /**
328            * Returns the first message boards mailing list in the ordered set where active = &#63;.
329            *
330            * @param active the active
331            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
332            * @return the first matching message boards mailing list, or <code>null</code> if a matching message boards mailing list could not be found
333            * @throws SystemException if a system exception occurred
334            */
335            public com.liferay.portlet.messageboards.model.MBMailingList fetchByActive_First(
336                    boolean active,
337                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
338                    throws com.liferay.portal.kernel.exception.SystemException;
339    
340            /**
341            * Returns the last message boards mailing list in the ordered set where active = &#63;.
342            *
343            * @param active the active
344            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
345            * @return the last matching message boards mailing list
346            * @throws com.liferay.portlet.messageboards.NoSuchMailingListException if a matching message boards mailing list could not be found
347            * @throws SystemException if a system exception occurred
348            */
349            public com.liferay.portlet.messageboards.model.MBMailingList findByActive_Last(
350                    boolean active,
351                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
352                    throws com.liferay.portal.kernel.exception.SystemException,
353                            com.liferay.portlet.messageboards.NoSuchMailingListException;
354    
355            /**
356            * Returns the last message boards mailing list in the ordered set where active = &#63;.
357            *
358            * @param active the active
359            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
360            * @return the last matching message boards mailing list, or <code>null</code> if a matching message boards mailing list could not be found
361            * @throws SystemException if a system exception occurred
362            */
363            public com.liferay.portlet.messageboards.model.MBMailingList fetchByActive_Last(
364                    boolean active,
365                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
366                    throws com.liferay.portal.kernel.exception.SystemException;
367    
368            /**
369            * Returns the message boards mailing lists before and after the current message boards mailing list in the ordered set where active = &#63;.
370            *
371            * @param mailingListId the primary key of the current message boards mailing list
372            * @param active the active
373            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
374            * @return the previous, current, and next message boards mailing list
375            * @throws com.liferay.portlet.messageboards.NoSuchMailingListException if a message boards mailing list with the primary key could not be found
376            * @throws SystemException if a system exception occurred
377            */
378            public com.liferay.portlet.messageboards.model.MBMailingList[] findByActive_PrevAndNext(
379                    long mailingListId, boolean active,
380                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
381                    throws com.liferay.portal.kernel.exception.SystemException,
382                            com.liferay.portlet.messageboards.NoSuchMailingListException;
383    
384            /**
385            * Returns the message boards mailing list where groupId = &#63; and categoryId = &#63; or throws a {@link com.liferay.portlet.messageboards.NoSuchMailingListException} if it could not be found.
386            *
387            * @param groupId the group ID
388            * @param categoryId the category ID
389            * @return the matching message boards mailing list
390            * @throws com.liferay.portlet.messageboards.NoSuchMailingListException if a matching message boards mailing list could not be found
391            * @throws SystemException if a system exception occurred
392            */
393            public com.liferay.portlet.messageboards.model.MBMailingList findByG_C(
394                    long groupId, long categoryId)
395                    throws com.liferay.portal.kernel.exception.SystemException,
396                            com.liferay.portlet.messageboards.NoSuchMailingListException;
397    
398            /**
399            * Returns the message boards mailing list where groupId = &#63; and categoryId = &#63; or returns <code>null</code> if it could not be found. Uses the finder cache.
400            *
401            * @param groupId the group ID
402            * @param categoryId the category ID
403            * @return the matching message boards mailing list, or <code>null</code> if a matching message boards mailing list could not be found
404            * @throws SystemException if a system exception occurred
405            */
406            public com.liferay.portlet.messageboards.model.MBMailingList fetchByG_C(
407                    long groupId, long categoryId)
408                    throws com.liferay.portal.kernel.exception.SystemException;
409    
410            /**
411            * Returns the message boards mailing list where groupId = &#63; and categoryId = &#63; or returns <code>null</code> if it could not be found, optionally using the finder cache.
412            *
413            * @param groupId the group ID
414            * @param categoryId the category ID
415            * @param retrieveFromCache whether to use the finder cache
416            * @return the matching message boards mailing list, or <code>null</code> if a matching message boards mailing list could not be found
417            * @throws SystemException if a system exception occurred
418            */
419            public com.liferay.portlet.messageboards.model.MBMailingList fetchByG_C(
420                    long groupId, long categoryId, boolean retrieveFromCache)
421                    throws com.liferay.portal.kernel.exception.SystemException;
422    
423            /**
424            * Returns all the message boards mailing lists.
425            *
426            * @return the message boards mailing lists
427            * @throws SystemException if a system exception occurred
428            */
429            public java.util.List<com.liferay.portlet.messageboards.model.MBMailingList> findAll()
430                    throws com.liferay.portal.kernel.exception.SystemException;
431    
432            /**
433            * Returns a range of all the message boards mailing lists.
434            *
435            * <p>
436            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
437            * </p>
438            *
439            * @param start the lower bound of the range of message boards mailing lists
440            * @param end the upper bound of the range of message boards mailing lists (not inclusive)
441            * @return the range of message boards mailing lists
442            * @throws SystemException if a system exception occurred
443            */
444            public java.util.List<com.liferay.portlet.messageboards.model.MBMailingList> findAll(
445                    int start, int end)
446                    throws com.liferay.portal.kernel.exception.SystemException;
447    
448            /**
449            * Returns an ordered range of all the message boards mailing lists.
450            *
451            * <p>
452            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
453            * </p>
454            *
455            * @param start the lower bound of the range of message boards mailing lists
456            * @param end the upper bound of the range of message boards mailing lists (not inclusive)
457            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
458            * @return the ordered range of message boards mailing lists
459            * @throws SystemException if a system exception occurred
460            */
461            public java.util.List<com.liferay.portlet.messageboards.model.MBMailingList> findAll(
462                    int start, int end,
463                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
464                    throws com.liferay.portal.kernel.exception.SystemException;
465    
466            /**
467            * Removes all the message boards mailing lists where uuid = &#63; from the database.
468            *
469            * @param uuid the uuid
470            * @throws SystemException if a system exception occurred
471            */
472            public void removeByUuid(java.lang.String uuid)
473                    throws com.liferay.portal.kernel.exception.SystemException;
474    
475            /**
476            * Removes the message boards mailing list where uuid = &#63; and groupId = &#63; from the database.
477            *
478            * @param uuid the uuid
479            * @param groupId the group ID
480            * @return the message boards mailing list that was removed
481            * @throws SystemException if a system exception occurred
482            */
483            public com.liferay.portlet.messageboards.model.MBMailingList removeByUUID_G(
484                    java.lang.String uuid, long groupId)
485                    throws com.liferay.portal.kernel.exception.SystemException,
486                            com.liferay.portlet.messageboards.NoSuchMailingListException;
487    
488            /**
489            * Removes all the message boards mailing lists where active = &#63; from the database.
490            *
491            * @param active the active
492            * @throws SystemException if a system exception occurred
493            */
494            public void removeByActive(boolean active)
495                    throws com.liferay.portal.kernel.exception.SystemException;
496    
497            /**
498            * Removes the message boards mailing list where groupId = &#63; and categoryId = &#63; from the database.
499            *
500            * @param groupId the group ID
501            * @param categoryId the category ID
502            * @return the message boards mailing list that was removed
503            * @throws SystemException if a system exception occurred
504            */
505            public com.liferay.portlet.messageboards.model.MBMailingList removeByG_C(
506                    long groupId, long categoryId)
507                    throws com.liferay.portal.kernel.exception.SystemException,
508                            com.liferay.portlet.messageboards.NoSuchMailingListException;
509    
510            /**
511            * Removes all the message boards mailing lists from the database.
512            *
513            * @throws SystemException if a system exception occurred
514            */
515            public void removeAll()
516                    throws com.liferay.portal.kernel.exception.SystemException;
517    
518            /**
519            * Returns the number of message boards mailing lists where uuid = &#63;.
520            *
521            * @param uuid the uuid
522            * @return the number of matching message boards mailing lists
523            * @throws SystemException if a system exception occurred
524            */
525            public int countByUuid(java.lang.String uuid)
526                    throws com.liferay.portal.kernel.exception.SystemException;
527    
528            /**
529            * Returns the number of message boards mailing lists where uuid = &#63; and groupId = &#63;.
530            *
531            * @param uuid the uuid
532            * @param groupId the group ID
533            * @return the number of matching message boards mailing lists
534            * @throws SystemException if a system exception occurred
535            */
536            public int countByUUID_G(java.lang.String uuid, long groupId)
537                    throws com.liferay.portal.kernel.exception.SystemException;
538    
539            /**
540            * Returns the number of message boards mailing lists where active = &#63;.
541            *
542            * @param active the active
543            * @return the number of matching message boards mailing lists
544            * @throws SystemException if a system exception occurred
545            */
546            public int countByActive(boolean active)
547                    throws com.liferay.portal.kernel.exception.SystemException;
548    
549            /**
550            * Returns the number of message boards mailing lists where groupId = &#63; and categoryId = &#63;.
551            *
552            * @param groupId the group ID
553            * @param categoryId the category ID
554            * @return the number of matching message boards mailing lists
555            * @throws SystemException if a system exception occurred
556            */
557            public int countByG_C(long groupId, long categoryId)
558                    throws com.liferay.portal.kernel.exception.SystemException;
559    
560            /**
561            * Returns the number of message boards mailing lists.
562            *
563            * @return the number of message boards mailing lists
564            * @throws SystemException if a system exception occurred
565            */
566            public int countAll()
567                    throws com.liferay.portal.kernel.exception.SystemException;
568    }