|
Liferay 6.0.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface MBMailingListPersistence
The persistence interface for the message boards mailing list service.
Never modify or reference this interface directly. Always use MBMailingListUtil
to access the message boards mailing list persistence. Modify service.xml
and rerun ServiceBuilder to regenerate this interface.
Caching information and settings can be found in portal.properties
MBMailingListPersistenceImpl
,
MBMailingListUtil
Method Summary | |
---|---|
void |
cacheResult(List<MBMailingList> mbMailingLists)
Caches the message boards mailing lists in the entity cache if it is enabled. |
void |
cacheResult(MBMailingList mbMailingList)
Caches the message boards mailing list in the entity cache if it is enabled. |
int |
countAll()
Counts all the message boards mailing lists. |
int |
countByActive(boolean active)
Counts all the message boards mailing lists where active = ?. |
int |
countByG_C(long groupId,
long categoryId)
Counts all the message boards mailing lists where groupId = ? and categoryId = ?. |
int |
countByUUID_G(String uuid,
long groupId)
Counts all the message boards mailing lists where uuid = ? and groupId = ?. |
int |
countByUuid(String uuid)
Counts all the message boards mailing lists where uuid = ?. |
MBMailingList |
create(long mailingListId)
Creates a new message boards mailing list with the primary key. |
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. |
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. |
MBMailingList |
fetchByPrimaryKey(long mailingListId)
Finds the message boards mailing list with the primary key or returns null if it could not be found. |
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. |
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. |
List<MBMailingList> |
findAll()
Finds all the message boards mailing lists. |
List<MBMailingList> |
findAll(int start,
int end)
Finds a range of all the message boards mailing lists. |
List<MBMailingList> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the message boards mailing lists. |
MBMailingList |
findByActive_First(boolean active,
OrderByComparator orderByComparator)
Finds the first message boards mailing list in the ordered set where active = ?. |
MBMailingList |
findByActive_Last(boolean active,
OrderByComparator orderByComparator)
Finds the last message boards mailing list in the ordered set where active = ?. |
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 = ?. |
List<MBMailingList> |
findByActive(boolean active)
Finds all the message boards mailing lists where active = ?. |
List<MBMailingList> |
findByActive(boolean active,
int start,
int end)
Finds a range of all the message boards mailing lists where active = ?. |
List<MBMailingList> |
findByActive(boolean active,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the message boards mailing lists where active = ?. |
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. |
MBMailingList |
findByPrimaryKey(long mailingListId)
Finds the message boards mailing list with the primary key or throws a NoSuchMailingListException if it could not be found. |
MBMailingList |
findByUuid_First(String uuid,
OrderByComparator orderByComparator)
Finds the first message boards mailing list in the ordered set where uuid = ?. |
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. |
MBMailingList |
findByUuid_Last(String uuid,
OrderByComparator orderByComparator)
Finds the last message boards mailing list in the ordered set where uuid = ?. |
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 = ?. |
List<MBMailingList> |
findByUuid(String uuid)
Finds all the message boards mailing lists where uuid = ?. |
List<MBMailingList> |
findByUuid(String uuid,
int start,
int end)
Finds a range of all the message boards mailing lists where uuid = ?. |
List<MBMailingList> |
findByUuid(String uuid,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the message boards mailing lists where uuid = ?. |
MBMailingList |
remove(long mailingListId)
Removes the message boards mailing list with the primary key from the database. |
void |
removeAll()
Removes all the message boards mailing lists from the database. |
void |
removeByActive(boolean active)
Removes all the message boards mailing lists where active = ? from the database. |
void |
removeByG_C(long groupId,
long categoryId)
Removes the message boards mailing list where groupId = ? and categoryId = ? from the database. |
void |
removeByUUID_G(String uuid,
long groupId)
Removes the message boards mailing list where uuid = ? and groupId = ? from the database. |
void |
removeByUuid(String uuid)
Removes all the message boards mailing lists where uuid = ? from the database. |
MBMailingList |
updateImpl(MBMailingList mbMailingList,
boolean merge)
|
Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence |
---|
clearCache, clearCache, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getListeners, registerListener, remove, remove, setDataSource, unregisterListener, update, update |
Method Detail |
---|
void cacheResult(MBMailingList mbMailingList)
mbMailingList
- the message boards mailing list to cachevoid cacheResult(List<MBMailingList> mbMailingLists)
mbMailingLists
- the message boards mailing lists to cacheMBMailingList create(long mailingListId)
mailingListId
- the primary key for the new message boards mailing list
MBMailingList remove(long mailingListId) throws SystemException, NoSuchMailingListException
mailingListId
- the primary key of the message boards mailing list to remove
NoSuchMailingListException
- if a message boards mailing list with the primary key could not be found
SystemException
- if a system exception occurredMBMailingList updateImpl(MBMailingList mbMailingList, boolean merge) throws SystemException
SystemException
MBMailingList findByPrimaryKey(long mailingListId) throws SystemException, NoSuchMailingListException
NoSuchMailingListException
if it could not be found.
mailingListId
- the primary key of the message boards mailing list to find
NoSuchMailingListException
- if a message boards mailing list with the primary key could not be found
SystemException
- if a system exception occurredMBMailingList fetchByPrimaryKey(long mailingListId) throws SystemException
null
if it could not be found.
mailingListId
- the primary key of the message boards mailing list to find
null
if a message boards mailing list with the primary key could not be found
SystemException
- if a system exception occurredList<MBMailingList> findByUuid(String uuid) throws SystemException
uuid
- the uuid to search with
SystemException
- if a system exception occurredList<MBMailingList> findByUuid(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.
uuid
- the uuid to search withstart
- the lower bound of the range of message boards mailing lists to returnend
- the upper bound of the range of message boards mailing lists to return (not inclusive)
SystemException
- if a system exception occurredList<MBMailingList> findByUuid(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.
uuid
- the uuid to search withstart
- the lower bound of the range of message boards mailing lists to returnend
- the upper bound of the range of message boards mailing lists to return (not inclusive)orderByComparator
- the comparator to order the results by
SystemException
- if a system exception occurredMBMailingList findByUuid_First(String uuid, OrderByComparator orderByComparator) throws SystemException, NoSuchMailingListException
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.
uuid
- the uuid to search withorderByComparator
- the comparator to order the set by
NoSuchMailingListException
- if a matching message boards mailing list could not be found
SystemException
- if a system exception occurredMBMailingList findByUuid_Last(String uuid, OrderByComparator orderByComparator) throws SystemException, NoSuchMailingListException
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.
uuid
- the uuid to search withorderByComparator
- the comparator to order the set by
NoSuchMailingListException
- if a matching message boards mailing list could not be found
SystemException
- if a system exception occurredMBMailingList[] findByUuid_PrevAndNext(long mailingListId, String uuid, OrderByComparator orderByComparator) throws SystemException, NoSuchMailingListException
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.
mailingListId
- the primary key of the current message boards mailing listuuid
- the uuid to search withorderByComparator
- the comparator to order the set by
NoSuchMailingListException
- if a message boards mailing list with the primary key could not be found
SystemException
- if a system exception occurredMBMailingList findByUUID_G(String uuid, long groupId) throws SystemException, NoSuchMailingListException
NoSuchMailingListException
if it could not be found.
uuid
- the uuid to search withgroupId
- the group id to search with
NoSuchMailingListException
- if a matching message boards mailing list could not be found
SystemException
- if a system exception occurredMBMailingList fetchByUUID_G(String uuid, long groupId) throws SystemException
null
if it could not be found. Uses the finder cache.
uuid
- the uuid to search withgroupId
- the group id to search with
null
if a matching message boards mailing list could not be found
SystemException
- if a system exception occurredMBMailingList fetchByUUID_G(String uuid, long groupId, boolean retrieveFromCache) throws SystemException
null
if it could not be found, optionally using the finder cache.
uuid
- the uuid to search withgroupId
- the group id to search with
null
if a matching message boards mailing list could not be found
SystemException
- if a system exception occurredList<MBMailingList> findByActive(boolean active) throws SystemException
active
- the active to search with
SystemException
- if a system exception occurredList<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.
active
- the active to search withstart
- the lower bound of the range of message boards mailing lists to returnend
- the upper bound of the range of message boards mailing lists to return (not inclusive)
SystemException
- if a system exception occurredList<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.
active
- the active to search withstart
- the lower bound of the range of message boards mailing lists to returnend
- the upper bound of the range of message boards mailing lists to return (not inclusive)orderByComparator
- the comparator to order the results by
SystemException
- if a system exception occurredMBMailingList findByActive_First(boolean active, OrderByComparator orderByComparator) throws SystemException, NoSuchMailingListException
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.
active
- the active to search withorderByComparator
- the comparator to order the set by
NoSuchMailingListException
- if a matching message boards mailing list could not be found
SystemException
- if a system exception occurredMBMailingList findByActive_Last(boolean active, OrderByComparator orderByComparator) throws SystemException, NoSuchMailingListException
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.
active
- the active to search withorderByComparator
- the comparator to order the set by
NoSuchMailingListException
- if a matching message boards mailing list could not be found
SystemException
- if a system exception occurredMBMailingList[] findByActive_PrevAndNext(long mailingListId, boolean active, OrderByComparator orderByComparator) throws SystemException, NoSuchMailingListException
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.
mailingListId
- the primary key of the current message boards mailing listactive
- the active to search withorderByComparator
- the comparator to order the set by
NoSuchMailingListException
- if a message boards mailing list with the primary key could not be found
SystemException
- if a system exception occurredMBMailingList findByG_C(long groupId, long categoryId) throws SystemException, NoSuchMailingListException
NoSuchMailingListException
if it could not be found.
groupId
- the group id to search withcategoryId
- the category id to search with
NoSuchMailingListException
- if a matching message boards mailing list could not be found
SystemException
- if a system exception occurredMBMailingList fetchByG_C(long groupId, long categoryId) throws SystemException
null
if it could not be found. Uses the finder cache.
groupId
- the group id to search withcategoryId
- the category id to search with
null
if a matching message boards mailing list could not be found
SystemException
- if a system exception occurredMBMailingList 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 id to search withcategoryId
- the category id to search with
null
if a matching message boards mailing list could not be found
SystemException
- if a system exception occurredList<MBMailingList> findAll() throws SystemException
SystemException
- if a system exception occurredList<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.
start
- the lower bound of the range of message boards mailing lists to returnend
- the upper bound of the range of message boards mailing lists to return (not inclusive)
SystemException
- if a system exception occurredList<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.
start
- the lower bound of the range of message boards mailing lists to returnend
- the upper bound of the range of message boards mailing lists to return (not inclusive)orderByComparator
- the comparator to order the results by
SystemException
- if a system exception occurredvoid removeByUuid(String uuid) throws SystemException
uuid
- the uuid to search with
SystemException
- if a system exception occurredvoid removeByUUID_G(String uuid, long groupId) throws SystemException, NoSuchMailingListException
uuid
- the uuid to search withgroupId
- the group id to search with
SystemException
- if a system exception occurred
NoSuchMailingListException
void removeByActive(boolean active) throws SystemException
active
- the active to search with
SystemException
- if a system exception occurredvoid removeByG_C(long groupId, long categoryId) throws SystemException, NoSuchMailingListException
groupId
- the group id to search withcategoryId
- the category id to search with
SystemException
- if a system exception occurred
NoSuchMailingListException
void removeAll() throws SystemException
SystemException
- if a system exception occurredint countByUuid(String uuid) throws SystemException
uuid
- the uuid to search with
SystemException
- if a system exception occurredint countByUUID_G(String uuid, long groupId) throws SystemException
uuid
- the uuid to search withgroupId
- the group id to search with
SystemException
- if a system exception occurredint countByActive(boolean active) throws SystemException
active
- the active to search with
SystemException
- if a system exception occurredint countByG_C(long groupId, long categoryId) throws SystemException
groupId
- the group id to search withcategoryId
- the category id to search with
SystemException
- if a system exception occurredint countAll() throws SystemException
SystemException
- if a system exception occurred
|
Liferay 6.0.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |