Liferay 6.0.5

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

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

public class MBMailingListUtil
extends Object

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

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

Caching information and settings can be found in portal.properties

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

Constructor Summary
MBMailingListUtil()
           
 
Method Summary
static void cacheResult(List<MBMailingList> mbMailingLists)
          Caches the message boards mailing lists in the entity cache if it is enabled.
static void cacheResult(MBMailingList mbMailingList)
          Caches the message boards mailing list in the entity cache if it is enabled.
static void clearCache()
           
static void clearCache(MBMailingList mbMailingList)
           
static int countAll()
          Counts all the message boards mailing lists.
static int countByActive(boolean active)
          Counts all the message boards mailing lists where active = ?.
static int countByG_C(long groupId, long categoryId)
          Counts all the message boards mailing lists where groupId = ? and categoryId = ?.
static int countByUUID_G(String uuid, long groupId)
          Counts all the message boards mailing lists where uuid = ? and groupId = ?.
static int countByUuid(String uuid)
          Counts all the message boards mailing lists where uuid = ?.
 long countWithDynamicQuery(DynamicQuery dynamicQuery)
           
static MBMailingList create(long mailingListId)
          Creates a new message boards mailing list with the primary key.
static MBMailingList fetchByG_C(long groupId, long categoryId)
          Finds the message boards mailing list where groupId = ? and categoryId = ? or returns null if it could not be found.
static MBMailingList fetchByG_C(long groupId, long categoryId, boolean retrieveFromCache)
          Finds the message boards mailing list where groupId = ? and categoryId = ? or returns null if it could not be found, optionally using the finder cache.
static MBMailingList fetchByPrimaryKey(long mailingListId)
          Finds the message boards mailing list with the primary key or returns null if it could not be found.
static MBMailingList fetchByUUID_G(String uuid, long groupId)
          Finds the message boards mailing list where uuid = ? and groupId = ? or returns null if it could not be found.
static MBMailingList fetchByUUID_G(String uuid, long groupId, boolean retrieveFromCache)
          Finds the message boards mailing list where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.
static List<MBMailingList> findAll()
          Finds all the message boards mailing lists.
static List<MBMailingList> findAll(int start, int end)
          Finds a range of all the message boards mailing lists.
static List<MBMailingList> findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message boards mailing lists.
static MBMailingList findByActive_First(boolean active, OrderByComparator orderByComparator)
          Finds the first message boards mailing list in the ordered set where active = ?.
static MBMailingList findByActive_Last(boolean active, OrderByComparator orderByComparator)
          Finds the last message boards mailing list in the ordered set where active = ?.
static MBMailingList[] findByActive_PrevAndNext(long mailingListId, boolean active, OrderByComparator orderByComparator)
          Finds the message boards mailing lists before and after the current message boards mailing list in the ordered set where active = ?.
static List<MBMailingList> findByActive(boolean active)
          Finds all the message boards mailing lists where active = ?.
static List<MBMailingList> findByActive(boolean active, int start, int end)
          Finds a range of all the message boards mailing lists where active = ?.
static List<MBMailingList> findByActive(boolean active, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message boards mailing lists where active = ?.
static MBMailingList findByG_C(long groupId, long categoryId)
          Finds the message boards mailing list where groupId = ? and categoryId = ? or throws a NoSuchMailingListException if it could not be found.
static MBMailingList findByPrimaryKey(long mailingListId)
          Finds the message boards mailing list with the primary key or throws a NoSuchMailingListException if it could not be found.
static MBMailingList findByUuid_First(String uuid, OrderByComparator orderByComparator)
          Finds the first message boards mailing list in the ordered set where uuid = ?.
static MBMailingList findByUUID_G(String uuid, long groupId)
          Finds the message boards mailing list where uuid = ? and groupId = ? or throws a NoSuchMailingListException if it could not be found.
static MBMailingList findByUuid_Last(String uuid, OrderByComparator orderByComparator)
          Finds the last message boards mailing list in the ordered set where uuid = ?.
static MBMailingList[] findByUuid_PrevAndNext(long mailingListId, String uuid, OrderByComparator orderByComparator)
          Finds the message boards mailing lists before and after the current message boards mailing list in the ordered set where uuid = ?.
static List<MBMailingList> findByUuid(String uuid)
          Finds all the message boards mailing lists where uuid = ?.
static List<MBMailingList> findByUuid(String uuid, int start, int end)
          Finds a range of all the message boards mailing lists where uuid = ?.
static List<MBMailingList> findByUuid(String uuid, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message boards mailing lists where uuid = ?.
static List<MBMailingList> findWithDynamicQuery(DynamicQuery dynamicQuery)
           
static List<MBMailingList> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
           
static List<MBMailingList> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
           
static MBMailingListPersistence getPersistence()
           
static MBMailingList remove(long mailingListId)
          Removes the message boards mailing list with the primary key from the database.
static MBMailingList remove(MBMailingList mbMailingList)
           
static void removeAll()
          Removes all the message boards mailing lists from the database.
static void removeByActive(boolean active)
          Removes all the message boards mailing lists where active = ? from the database.
static void removeByG_C(long groupId, long categoryId)
          Removes the message boards mailing list where groupId = ? and categoryId = ? from the database.
static void removeByUUID_G(String uuid, long groupId)
          Removes the message boards mailing list where uuid = ? and groupId = ? from the database.
static void removeByUuid(String uuid)
          Removes all the message boards mailing lists where uuid = ? from the database.
 void setPersistence(MBMailingListPersistence persistence)
           
static MBMailingList update(MBMailingList mbMailingList, boolean merge)
           
static MBMailingList update(MBMailingList mbMailingList, boolean merge, ServiceContext serviceContext)
           
static MBMailingList updateImpl(MBMailingList mbMailingList, boolean merge)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MBMailingListUtil

public MBMailingListUtil()
Method Detail

clearCache

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

clearCache

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

countWithDynamicQuery

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

findWithDynamicQuery

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

findWithDynamicQuery

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

findWithDynamicQuery

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

remove

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

update

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

update

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

cacheResult

public static void cacheResult(MBMailingList mbMailingList)
Caches the message boards mailing list in the entity cache if it is enabled.

Parameters:
mbMailingList - the message boards mailing list to cache

cacheResult

public static void cacheResult(List<MBMailingList> mbMailingLists)
Caches the message boards mailing lists in the entity cache if it is enabled.

Parameters:
mbMailingLists - the message boards mailing lists to cache

create

public static MBMailingList create(long mailingListId)
Creates a new message boards mailing list with the primary key. Does not add the message boards mailing list to the database.

Parameters:
mailingListId - the primary key for the new message boards mailing list
Returns:
the new message boards mailing list

remove

public static MBMailingList remove(long mailingListId)
                            throws SystemException,
                                   NoSuchMailingListException
Removes the message boards mailing list with the primary key from the database. Also notifies the appropriate model listeners.

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

updateImpl

public static MBMailingList updateImpl(MBMailingList mbMailingList,
                                       boolean merge)
                                throws SystemException
Throws:
SystemException

findByPrimaryKey

public static MBMailingList findByPrimaryKey(long mailingListId)
                                      throws SystemException,
                                             NoSuchMailingListException
Finds the message boards mailing list with the primary key or throws a NoSuchMailingListException if it could not be found.

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

fetchByPrimaryKey

public static MBMailingList fetchByPrimaryKey(long mailingListId)
                                       throws SystemException
Finds the message boards mailing list with the primary key or returns null if it could not be found.

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

findByUuid

public static List<MBMailingList> findByUuid(String uuid)
                                      throws SystemException
Finds all the message boards mailing lists where uuid = ?.

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

findByUuid

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

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

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

findByUuid

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

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

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

findByUuid_First

public static MBMailingList findByUuid_First(String uuid,
                                             OrderByComparator orderByComparator)
                                      throws SystemException,
                                             NoSuchMailingListException
Finds the first message boards mailing list in the ordered set where uuid = ?.

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

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

findByUuid_Last

public static MBMailingList findByUuid_Last(String uuid,
                                            OrderByComparator orderByComparator)
                                     throws SystemException,
                                            NoSuchMailingListException
Finds the last message boards mailing list in the ordered set where uuid = ?.

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

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

findByUuid_PrevAndNext

public static MBMailingList[] findByUuid_PrevAndNext(long mailingListId,
                                                     String uuid,
                                                     OrderByComparator orderByComparator)
                                              throws SystemException,
                                                     NoSuchMailingListException
Finds the message boards mailing lists before and after the current message boards mailing list in the ordered set where uuid = ?.

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

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

findByUUID_G

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

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

fetchByUUID_G

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

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

fetchByUUID_G

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

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

findByActive

public static List<MBMailingList> findByActive(boolean active)
                                        throws SystemException
Finds all the message boards mailing lists where active = ?.

Parameters:
active - the active to search with
Returns:
the matching message boards mailing lists
Throws:
SystemException - if a system exception occurred

findByActive

public static List<MBMailingList> findByActive(boolean active,
                                               int start,
                                               int end)
                                        throws SystemException
Finds a range of all the message boards mailing lists where active = ?.

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

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

findByActive

public static List<MBMailingList> findByActive(boolean active,
                                               int start,
                                               int end,
                                               OrderByComparator orderByComparator)
                                        throws SystemException
Finds an ordered range of all the message boards mailing lists where active = ?.

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

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

findByActive_First

public static MBMailingList findByActive_First(boolean active,
                                               OrderByComparator orderByComparator)
                                        throws SystemException,
                                               NoSuchMailingListException
Finds the first message boards mailing list in the ordered set where active = ?.

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

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

findByActive_Last

public static MBMailingList findByActive_Last(boolean active,
                                              OrderByComparator orderByComparator)
                                       throws SystemException,
                                              NoSuchMailingListException
Finds the last message boards mailing list in the ordered set where active = ?.

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

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

findByActive_PrevAndNext

public static MBMailingList[] findByActive_PrevAndNext(long mailingListId,
                                                       boolean active,
                                                       OrderByComparator orderByComparator)
                                                throws SystemException,
                                                       NoSuchMailingListException
Finds the message boards mailing lists before and after the current message boards mailing list in the ordered set where active = ?.

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

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

findByG_C

public static MBMailingList findByG_C(long groupId,
                                      long categoryId)
                               throws SystemException,
                                      NoSuchMailingListException
Finds the message boards mailing list where groupId = ? and categoryId = ? or throws a NoSuchMailingListException if it could not be found.

Parameters:
groupId - the group id to search with
categoryId - the category id to search with
Returns:
the matching message boards mailing list
Throws:
NoSuchMailingListException - if a matching message boards mailing list could not be found
SystemException - if a system exception occurred

fetchByG_C

public static MBMailingList fetchByG_C(long groupId,
                                       long categoryId)
                                throws SystemException
Finds the message boards mailing list where groupId = ? and categoryId = ? or returns null if it could not be found. Uses the finder cache.

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

fetchByG_C

public static MBMailingList fetchByG_C(long groupId,
                                       long categoryId,
                                       boolean retrieveFromCache)
                                throws SystemException
Finds the message boards mailing list where groupId = ? and categoryId = ? or returns null if it could not be found, optionally using the finder cache.

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

findAll

public static List<MBMailingList> findAll()
                                   throws SystemException
Finds all the message boards mailing lists.

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

findAll

public static List<MBMailingList> findAll(int start,
                                          int end)
                                   throws SystemException
Finds a range of all the message boards mailing lists.

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

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

findAll

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

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

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

removeByUuid

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

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

removeByUUID_G

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

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

removeByActive

public static void removeByActive(boolean active)
                           throws SystemException
Removes all the message boards mailing lists where active = ? from the database.

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

removeByG_C

public static void removeByG_C(long groupId,
                               long categoryId)
                        throws SystemException,
                               NoSuchMailingListException
Removes the message boards mailing list where groupId = ? and categoryId = ? from the database.

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

removeAll

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

Throws:
SystemException - if a system exception occurred

countByUuid

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

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

countByUUID_G

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

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

countByActive

public static int countByActive(boolean active)
                         throws SystemException
Counts all the message boards mailing lists where active = ?.

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

countByG_C

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

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

countAll

public static int countAll()
                    throws SystemException
Counts all the message boards mailing lists.

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

getPersistence

public static MBMailingListPersistence getPersistence()

setPersistence

public void setPersistence(MBMailingListPersistence persistence)

Liferay 6.0.5