@ProviderType
public class MBMailingListUtil
extends java.lang.Object
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.
Caching information and settings can be found in portal.properties
MBMailingListPersistence,
MBMailingListPersistenceImpl| Constructor and Description |
|---|
MBMailingListUtil() |
| Modifier and Type | Method and Description |
|---|---|
static void |
cacheResult(java.util.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()
Returns the number of message boards mailing lists.
|
static int |
countByActive(boolean active)
Returns the number of message boards mailing lists where active = ?.
|
static int |
countByG_C(long groupId,
long categoryId)
Returns the number of message boards mailing lists where groupId = ? and categoryId = ?.
|
static int |
countByUuid_C(java.lang.String uuid,
long companyId)
Returns the number of message boards mailing lists where uuid = ? and companyId = ?.
|
static int |
countByUUID_G(java.lang.String uuid,
long groupId)
Returns the number of message boards mailing lists where uuid = ? and groupId = ?.
|
static int |
countByUuid(java.lang.String uuid)
Returns the number of message boards mailing lists where uuid = ?.
|
static long |
countWithDynamicQuery(DynamicQuery dynamicQuery) |
static MBMailingList |
create(long mailingListId)
Creates a new message boards mailing list with the primary key.
|
static MBMailingList |
fetchByActive_First(boolean active,
OrderByComparator orderByComparator)
Returns the first message boards mailing list in the ordered set where active = ?.
|
static MBMailingList |
fetchByActive_Last(boolean active,
OrderByComparator orderByComparator)
Returns the last message boards mailing list in the ordered set where active = ?.
|
static MBMailingList |
fetchByG_C(long groupId,
long categoryId)
Returns 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)
Returns 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)
Returns the message boards mailing list with the primary key or returns
null if it could not be found. |
static MBMailingList |
fetchByUuid_C_First(java.lang.String uuid,
long companyId,
OrderByComparator orderByComparator)
Returns the first message boards mailing list in the ordered set where uuid = ? and companyId = ?.
|
static MBMailingList |
fetchByUuid_C_Last(java.lang.String uuid,
long companyId,
OrderByComparator orderByComparator)
Returns the last message boards mailing list in the ordered set where uuid = ? and companyId = ?.
|
static MBMailingList |
fetchByUuid_First(java.lang.String uuid,
OrderByComparator orderByComparator)
Returns the first message boards mailing list in the ordered set where uuid = ?.
|
static MBMailingList |
fetchByUUID_G(java.lang.String uuid,
long groupId)
Returns the message boards mailing list where uuid = ? and groupId = ? or returns
null if it could not be found. |
static MBMailingList |
fetchByUUID_G(java.lang.String uuid,
long groupId,
boolean retrieveFromCache)
Returns the message boards mailing list where uuid = ? and groupId = ? or returns
null if it could not be found, optionally using the finder cache. |
static MBMailingList |
fetchByUuid_Last(java.lang.String uuid,
OrderByComparator orderByComparator)
Returns the last message boards mailing list in the ordered set where uuid = ?.
|
static java.util.List<MBMailingList> |
findAll()
Returns all the message boards mailing lists.
|
static java.util.List<MBMailingList> |
findAll(int start,
int end)
Returns a range of all the message boards mailing lists.
|
static java.util.List<MBMailingList> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards mailing lists.
|
static MBMailingList |
findByActive_First(boolean active,
OrderByComparator orderByComparator)
Returns the first message boards mailing list in the ordered set where active = ?.
|
static MBMailingList |
findByActive_Last(boolean active,
OrderByComparator orderByComparator)
Returns the last message boards mailing list in the ordered set where active = ?.
|
static MBMailingList[] |
findByActive_PrevAndNext(long mailingListId,
boolean active,
OrderByComparator orderByComparator)
Returns the message boards mailing lists before and after the current message boards mailing list in the ordered set where active = ?.
|
static java.util.List<MBMailingList> |
findByActive(boolean active)
Returns all the message boards mailing lists where active = ?.
|
static java.util.List<MBMailingList> |
findByActive(boolean active,
int start,
int end)
Returns a range of all the message boards mailing lists where active = ?.
|
static java.util.List<MBMailingList> |
findByActive(boolean active,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards mailing lists where active = ?.
|
static MBMailingList |
findByG_C(long groupId,
long categoryId)
Returns the message boards mailing list where groupId = ? and categoryId = ? or throws a
NoSuchMailingListException if it could not be found. |
static MBMailingList |
findByPrimaryKey(long mailingListId)
Returns the message boards mailing list with the primary key or throws a
NoSuchMailingListException if it could not be found. |
static MBMailingList |
findByUuid_C_First(java.lang.String uuid,
long companyId,
OrderByComparator orderByComparator)
Returns the first message boards mailing list in the ordered set where uuid = ? and companyId = ?.
|
static MBMailingList |
findByUuid_C_Last(java.lang.String uuid,
long companyId,
OrderByComparator orderByComparator)
Returns the last message boards mailing list in the ordered set where uuid = ? and companyId = ?.
|
static MBMailingList[] |
findByUuid_C_PrevAndNext(long mailingListId,
java.lang.String uuid,
long companyId,
OrderByComparator orderByComparator)
Returns the message boards mailing lists before and after the current message boards mailing list in the ordered set where uuid = ? and companyId = ?.
|
static java.util.List<MBMailingList> |
findByUuid_C(java.lang.String uuid,
long companyId)
Returns all the message boards mailing lists where uuid = ? and companyId = ?.
|
static java.util.List<MBMailingList> |
findByUuid_C(java.lang.String uuid,
long companyId,
int start,
int end)
Returns a range of all the message boards mailing lists where uuid = ? and companyId = ?.
|
static java.util.List<MBMailingList> |
findByUuid_C(java.lang.String uuid,
long companyId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards mailing lists where uuid = ? and companyId = ?.
|
static MBMailingList |
findByUuid_First(java.lang.String uuid,
OrderByComparator orderByComparator)
Returns the first message boards mailing list in the ordered set where uuid = ?.
|
static MBMailingList |
findByUUID_G(java.lang.String uuid,
long groupId)
Returns the message boards mailing list where uuid = ? and groupId = ? or throws a
NoSuchMailingListException if it could not be found. |
static MBMailingList |
findByUuid_Last(java.lang.String uuid,
OrderByComparator orderByComparator)
Returns the last message boards mailing list in the ordered set where uuid = ?.
|
static MBMailingList[] |
findByUuid_PrevAndNext(long mailingListId,
java.lang.String uuid,
OrderByComparator orderByComparator)
Returns the message boards mailing lists before and after the current message boards mailing list in the ordered set where uuid = ?.
|
static java.util.List<MBMailingList> |
findByUuid(java.lang.String uuid)
Returns all the message boards mailing lists where uuid = ?.
|
static java.util.List<MBMailingList> |
findByUuid(java.lang.String uuid,
int start,
int end)
Returns a range of all the message boards mailing lists where uuid = ?.
|
static java.util.List<MBMailingList> |
findByUuid(java.lang.String uuid,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards mailing lists where uuid = ?.
|
static java.util.List<MBMailingList> |
findWithDynamicQuery(DynamicQuery dynamicQuery) |
static java.util.List<MBMailingList> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end) |
static java.util.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 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 MBMailingList |
removeByG_C(long groupId,
long categoryId)
Removes the message boards mailing list where groupId = ? and categoryId = ? from the database.
|
static void |
removeByUuid_C(java.lang.String uuid,
long companyId)
Removes all the message boards mailing lists where uuid = ? and companyId = ? from the database.
|
static MBMailingList |
removeByUUID_G(java.lang.String uuid,
long groupId)
Removes the message boards mailing list where uuid = ? and groupId = ? from the database.
|
static void |
removeByUuid(java.lang.String uuid)
Removes all the message boards mailing lists where uuid = ? from the database.
|
void |
setPersistence(MBMailingListPersistence persistence)
Deprecated.
As of 6.2.0
|
static MBMailingList |
update(MBMailingList mbMailingList) |
static MBMailingList |
update(MBMailingList mbMailingList,
ServiceContext serviceContext) |
static MBMailingList |
updateImpl(MBMailingList mbMailingList) |
public static void clearCache()
BasePersistence.clearCache()public static void clearCache(MBMailingList mbMailingList)
public static long countWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemExceptionBasePersistence.countWithDynamicQuery(DynamicQuery)public static java.util.List<MBMailingList> findWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemExceptionBasePersistence.findWithDynamicQuery(DynamicQuery)public static java.util.List<MBMailingList> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end) throws SystemException
public static java.util.List<MBMailingList> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator) throws SystemException
public static MBMailingList update(MBMailingList mbMailingList) throws SystemException
public static MBMailingList update(MBMailingList mbMailingList, ServiceContext serviceContext) throws SystemException
public static java.util.List<MBMailingList> findByUuid(java.lang.String uuid) throws SystemException
uuid - the uuidSystemException - if a system exception occurredpublic static java.util.List<MBMailingList> findByUuid(java.lang.String uuid, int start, int end) throws SystemException
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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from MBMailingListModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
uuid - the uuidstart - the lower bound of the range of message boards mailing listsend - the upper bound of the range of message boards mailing lists (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBMailingList> findByUuid(java.lang.String uuid, int start, int end, OrderByComparator orderByComparator) throws SystemException
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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from MBMailingListModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
uuid - the uuidstart - the lower bound of the range of message boards mailing listsend - the upper bound of the range of message boards mailing lists (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static MBMailingList findByUuid_First(java.lang.String uuid, OrderByComparator orderByComparator) throws SystemException, NoSuchMailingListException
uuid - the uuidorderByComparator - the comparator to order the set by (optionally null)NoSuchMailingListException - if a matching message boards mailing list could not be foundSystemException - if a system exception occurredpublic static MBMailingList fetchByUuid_First(java.lang.String uuid, OrderByComparator orderByComparator) throws SystemException
uuid - the uuidorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards mailing list could not be foundSystemException - if a system exception occurredpublic static MBMailingList findByUuid_Last(java.lang.String uuid, OrderByComparator orderByComparator) throws SystemException, NoSuchMailingListException
uuid - the uuidorderByComparator - the comparator to order the set by (optionally null)NoSuchMailingListException - if a matching message boards mailing list could not be foundSystemException - if a system exception occurredpublic static MBMailingList fetchByUuid_Last(java.lang.String uuid, OrderByComparator orderByComparator) throws SystemException
uuid - the uuidorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards mailing list could not be foundSystemException - if a system exception occurredpublic static MBMailingList[] findByUuid_PrevAndNext(long mailingListId, java.lang.String uuid, OrderByComparator orderByComparator) throws SystemException, NoSuchMailingListException
mailingListId - the primary key of the current message boards mailing listuuid - the uuidorderByComparator - the comparator to order the set by (optionally null)NoSuchMailingListException - if a message boards mailing list with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByUuid(java.lang.String uuid)
throws SystemException
uuid - the uuidSystemException - if a system exception occurredpublic static int countByUuid(java.lang.String uuid)
throws SystemException
uuid - the uuidSystemException - if a system exception occurredpublic static MBMailingList findByUUID_G(java.lang.String uuid, long groupId) throws SystemException, NoSuchMailingListException
NoSuchMailingListException if it could not be found.uuid - the uuidgroupId - the group IDNoSuchMailingListException - if a matching message boards mailing list could not be foundSystemException - if a system exception occurredpublic static MBMailingList fetchByUUID_G(java.lang.String uuid, long groupId) throws SystemException
null if it could not be found. Uses the finder cache.uuid - the uuidgroupId - the group IDnull if a matching message boards mailing list could not be foundSystemException - if a system exception occurredpublic static MBMailingList fetchByUUID_G(java.lang.String uuid, long groupId, boolean retrieveFromCache) throws SystemException
null if it could not be found, optionally using the finder cache.uuid - the uuidgroupId - the group IDretrieveFromCache - whether to use the finder cachenull if a matching message boards mailing list could not be foundSystemException - if a system exception occurredpublic static MBMailingList removeByUUID_G(java.lang.String uuid, long groupId) throws SystemException, NoSuchMailingListException
uuid - the uuidgroupId - the group IDSystemException - if a system exception occurredNoSuchMailingListExceptionpublic static int countByUUID_G(java.lang.String uuid,
long groupId)
throws SystemException
uuid - the uuidgroupId - the group IDSystemException - if a system exception occurredpublic static java.util.List<MBMailingList> findByUuid_C(java.lang.String uuid, long companyId) throws SystemException
uuid - the uuidcompanyId - the company IDSystemException - if a system exception occurredpublic static java.util.List<MBMailingList> findByUuid_C(java.lang.String uuid, long companyId, int start, int end) throws SystemException
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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from MBMailingListModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
uuid - the uuidcompanyId - the company IDstart - the lower bound of the range of message boards mailing listsend - the upper bound of the range of message boards mailing lists (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBMailingList> findByUuid_C(java.lang.String uuid, long companyId, int start, int end, OrderByComparator orderByComparator) throws SystemException
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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from MBMailingListModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
uuid - the uuidcompanyId - the company IDstart - the lower bound of the range of message boards mailing listsend - the upper bound of the range of message boards mailing lists (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static MBMailingList findByUuid_C_First(java.lang.String uuid, long companyId, OrderByComparator orderByComparator) throws SystemException, NoSuchMailingListException
uuid - the uuidcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchMailingListException - if a matching message boards mailing list could not be foundSystemException - if a system exception occurredpublic static MBMailingList fetchByUuid_C_First(java.lang.String uuid, long companyId, OrderByComparator orderByComparator) throws SystemException
uuid - the uuidcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards mailing list could not be foundSystemException - if a system exception occurredpublic static MBMailingList findByUuid_C_Last(java.lang.String uuid, long companyId, OrderByComparator orderByComparator) throws SystemException, NoSuchMailingListException
uuid - the uuidcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchMailingListException - if a matching message boards mailing list could not be foundSystemException - if a system exception occurredpublic static MBMailingList fetchByUuid_C_Last(java.lang.String uuid, long companyId, OrderByComparator orderByComparator) throws SystemException
uuid - the uuidcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards mailing list could not be foundSystemException - if a system exception occurredpublic static MBMailingList[] findByUuid_C_PrevAndNext(long mailingListId, java.lang.String uuid, long companyId, OrderByComparator orderByComparator) throws SystemException, NoSuchMailingListException
mailingListId - the primary key of the current message boards mailing listuuid - the uuidcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchMailingListException - if a message boards mailing list with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByUuid_C(java.lang.String uuid,
long companyId)
throws SystemException
uuid - the uuidcompanyId - the company IDSystemException - if a system exception occurredpublic static int countByUuid_C(java.lang.String uuid,
long companyId)
throws SystemException
uuid - the uuidcompanyId - the company IDSystemException - if a system exception occurredpublic static java.util.List<MBMailingList> findByActive(boolean active) throws SystemException
active - the activeSystemException - if a system exception occurredpublic static java.util.List<MBMailingList> findByActive(boolean active, int start, int end) throws SystemException
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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from MBMailingListModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
active - the activestart - the lower bound of the range of message boards mailing listsend - the upper bound of the range of message boards mailing lists (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBMailingList> findByActive(boolean active, int start, int end, OrderByComparator orderByComparator) throws SystemException
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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from MBMailingListModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
active - the activestart - the lower bound of the range of message boards mailing listsend - the upper bound of the range of message boards mailing lists (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static MBMailingList findByActive_First(boolean active, OrderByComparator orderByComparator) throws SystemException, NoSuchMailingListException
active - the activeorderByComparator - the comparator to order the set by (optionally null)NoSuchMailingListException - if a matching message boards mailing list could not be foundSystemException - if a system exception occurredpublic static MBMailingList fetchByActive_First(boolean active, OrderByComparator orderByComparator) throws SystemException
active - the activeorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards mailing list could not be foundSystemException - if a system exception occurredpublic static MBMailingList findByActive_Last(boolean active, OrderByComparator orderByComparator) throws SystemException, NoSuchMailingListException
active - the activeorderByComparator - the comparator to order the set by (optionally null)NoSuchMailingListException - if a matching message boards mailing list could not be foundSystemException - if a system exception occurredpublic static MBMailingList fetchByActive_Last(boolean active, OrderByComparator orderByComparator) throws SystemException
active - the activeorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards mailing list could not be foundSystemException - if a system exception occurredpublic static MBMailingList[] findByActive_PrevAndNext(long mailingListId, boolean active, OrderByComparator orderByComparator) throws SystemException, NoSuchMailingListException
mailingListId - the primary key of the current message boards mailing listactive - the activeorderByComparator - the comparator to order the set by (optionally null)NoSuchMailingListException - if a message boards mailing list with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByActive(boolean active)
throws SystemException
active - the activeSystemException - if a system exception occurredpublic static int countByActive(boolean active)
throws SystemException
active - the activeSystemException - if a system exception occurredpublic static MBMailingList findByG_C(long groupId, long categoryId) throws SystemException, NoSuchMailingListException
NoSuchMailingListException if it could not be found.groupId - the group IDcategoryId - the category IDNoSuchMailingListException - if a matching message boards mailing list could not be foundSystemException - if a system exception occurredpublic static MBMailingList fetchByG_C(long groupId, long categoryId) throws SystemException
null if it could not be found. Uses the finder cache.groupId - the group IDcategoryId - the category IDnull if a matching message boards mailing list could not be foundSystemException - if a system exception occurredpublic static MBMailingList fetchByG_C(long groupId, long categoryId, boolean retrieveFromCache) throws SystemException
null if it could not be found, optionally using the finder cache.groupId - the group IDcategoryId - the category IDretrieveFromCache - whether to use the finder cachenull if a matching message boards mailing list could not be foundSystemException - if a system exception occurredpublic static MBMailingList removeByG_C(long groupId, long categoryId) throws SystemException, NoSuchMailingListException
groupId - the group IDcategoryId - the category IDSystemException - if a system exception occurredNoSuchMailingListExceptionpublic static int countByG_C(long groupId,
long categoryId)
throws SystemException
groupId - the group IDcategoryId - the category IDSystemException - if a system exception occurredpublic static void cacheResult(MBMailingList mbMailingList)
mbMailingList - the message boards mailing listpublic static void cacheResult(java.util.List<MBMailingList> mbMailingLists)
mbMailingLists - the message boards mailing listspublic static MBMailingList create(long mailingListId)
mailingListId - the primary key for the new message boards mailing listpublic static MBMailingList remove(long mailingListId) throws SystemException, NoSuchMailingListException
mailingListId - the primary key of the message boards mailing listNoSuchMailingListException - if a message boards mailing list with the primary key could not be foundSystemException - if a system exception occurredpublic static MBMailingList updateImpl(MBMailingList mbMailingList) throws SystemException
SystemExceptionpublic static MBMailingList findByPrimaryKey(long mailingListId) throws SystemException, NoSuchMailingListException
NoSuchMailingListException if it could not be found.mailingListId - the primary key of the message boards mailing listNoSuchMailingListException - if a message boards mailing list with the primary key could not be foundSystemException - if a system exception occurredpublic static MBMailingList fetchByPrimaryKey(long mailingListId) throws SystemException
null if it could not be found.mailingListId - the primary key of the message boards mailing listnull if a message boards mailing list with the primary key could not be foundSystemException - if a system exception occurredpublic static java.util.List<MBMailingList> findAll() throws SystemException
SystemException - if a system exception occurredpublic static java.util.List<MBMailingList> findAll(int start, int end) throws SystemException
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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from MBMailingListModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
start - the lower bound of the range of message boards mailing listsend - the upper bound of the range of message boards mailing lists (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBMailingList> findAll(int start, int end, OrderByComparator orderByComparator) throws SystemException
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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from MBMailingListModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
start - the lower bound of the range of message boards mailing listsend - the upper bound of the range of message boards mailing lists (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static void removeAll()
throws SystemException
SystemException - if a system exception occurredpublic static int countAll()
throws SystemException
SystemException - if a system exception occurredpublic static MBMailingListPersistence getPersistence()
public void setPersistence(MBMailingListPersistence persistence)