Liferay 6.0.5

com.liferay.portlet.messageboards.service.persistence
Interface MBBanPersistence

All Superinterfaces:
BasePersistence<MBBan>
All Known Implementing Classes:
MBBanPersistenceImpl

public interface MBBanPersistence
extends BasePersistence<MBBan>

The persistence interface for the message boards ban service.

Never modify or reference this interface directly. Always use MBBanUtil to access the message boards ban persistence. Modify service.xml and rerun ServiceBuilder to regenerate this interface.

Caching information and settings can be found in portal.properties

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

Method Summary
 void cacheResult(List<MBBan> mbBans)
          Caches the message boards bans in the entity cache if it is enabled.
 void cacheResult(MBBan mbBan)
          Caches the message boards ban in the entity cache if it is enabled.
 int countAll()
          Counts all the message boards bans.
 int countByBanUserId(long banUserId)
          Counts all the message boards bans where banUserId = ?.
 int countByG_B(long groupId, long banUserId)
          Counts all the message boards bans where groupId = ? and banUserId = ?.
 int countByGroupId(long groupId)
          Counts all the message boards bans where groupId = ?.
 int countByUserId(long userId)
          Counts all the message boards bans where userId = ?.
 MBBan create(long banId)
          Creates a new message boards ban with the primary key.
 MBBan fetchByG_B(long groupId, long banUserId)
          Finds the message boards ban where groupId = ? and banUserId = ? or returns null if it could not be found.
 MBBan fetchByG_B(long groupId, long banUserId, boolean retrieveFromCache)
          Finds the message boards ban where groupId = ? and banUserId = ? or returns null if it could not be found, optionally using the finder cache.
 MBBan fetchByPrimaryKey(long banId)
          Finds the message boards ban with the primary key or returns null if it could not be found.
 List<MBBan> findAll()
          Finds all the message boards bans.
 List<MBBan> findAll(int start, int end)
          Finds a range of all the message boards bans.
 List<MBBan> findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message boards bans.
 MBBan findByBanUserId_First(long banUserId, OrderByComparator orderByComparator)
          Finds the first message boards ban in the ordered set where banUserId = ?.
 MBBan findByBanUserId_Last(long banUserId, OrderByComparator orderByComparator)
          Finds the last message boards ban in the ordered set where banUserId = ?.
 MBBan[] findByBanUserId_PrevAndNext(long banId, long banUserId, OrderByComparator orderByComparator)
          Finds the message boards bans before and after the current message boards ban in the ordered set where banUserId = ?.
 List<MBBan> findByBanUserId(long banUserId)
          Finds all the message boards bans where banUserId = ?.
 List<MBBan> findByBanUserId(long banUserId, int start, int end)
          Finds a range of all the message boards bans where banUserId = ?.
 List<MBBan> findByBanUserId(long banUserId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message boards bans where banUserId = ?.
 MBBan findByG_B(long groupId, long banUserId)
          Finds the message boards ban where groupId = ? and banUserId = ? or throws a NoSuchBanException if it could not be found.
 MBBan findByGroupId_First(long groupId, OrderByComparator orderByComparator)
          Finds the first message boards ban in the ordered set where groupId = ?.
 MBBan findByGroupId_Last(long groupId, OrderByComparator orderByComparator)
          Finds the last message boards ban in the ordered set where groupId = ?.
 MBBan[] findByGroupId_PrevAndNext(long banId, long groupId, OrderByComparator orderByComparator)
          Finds the message boards bans before and after the current message boards ban in the ordered set where groupId = ?.
 List<MBBan> findByGroupId(long groupId)
          Finds all the message boards bans where groupId = ?.
 List<MBBan> findByGroupId(long groupId, int start, int end)
          Finds a range of all the message boards bans where groupId = ?.
 List<MBBan> findByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message boards bans where groupId = ?.
 MBBan findByPrimaryKey(long banId)
          Finds the message boards ban with the primary key or throws a NoSuchBanException if it could not be found.
 MBBan findByUserId_First(long userId, OrderByComparator orderByComparator)
          Finds the first message boards ban in the ordered set where userId = ?.
 MBBan findByUserId_Last(long userId, OrderByComparator orderByComparator)
          Finds the last message boards ban in the ordered set where userId = ?.
 MBBan[] findByUserId_PrevAndNext(long banId, long userId, OrderByComparator orderByComparator)
          Finds the message boards bans before and after the current message boards ban in the ordered set where userId = ?.
 List<MBBan> findByUserId(long userId)
          Finds all the message boards bans where userId = ?.
 List<MBBan> findByUserId(long userId, int start, int end)
          Finds a range of all the message boards bans where userId = ?.
 List<MBBan> findByUserId(long userId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the message boards bans where userId = ?.
 MBBan remove(long banId)
          Removes the message boards ban with the primary key from the database.
 void removeAll()
          Removes all the message boards bans from the database.
 void removeByBanUserId(long banUserId)
          Removes all the message boards bans where banUserId = ? from the database.
 void removeByG_B(long groupId, long banUserId)
          Removes the message boards ban where groupId = ? and banUserId = ? from the database.
 void removeByGroupId(long groupId)
          Removes all the message boards bans where groupId = ? from the database.
 void removeByUserId(long userId)
          Removes all the message boards bans where userId = ? from the database.
 MBBan updateImpl(MBBan mbBan, 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

cacheResult

void cacheResult(MBBan mbBan)
Caches the message boards ban in the entity cache if it is enabled.

Parameters:
mbBan - the message boards ban to cache

cacheResult

void cacheResult(List<MBBan> mbBans)
Caches the message boards bans in the entity cache if it is enabled.

Parameters:
mbBans - the message boards bans to cache

create

MBBan create(long banId)
Creates a new message boards ban with the primary key. Does not add the message boards ban to the database.

Parameters:
banId - the primary key for the new message boards ban
Returns:
the new message boards ban

remove

MBBan remove(long banId)
             throws SystemException,
                    NoSuchBanException
Removes the message boards ban with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
banId - the primary key of the message boards ban to remove
Returns:
the message boards ban that was removed
Throws:
NoSuchBanException - if a message boards ban with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

MBBan updateImpl(MBBan mbBan,
                 boolean merge)
                 throws SystemException
Throws:
SystemException

findByPrimaryKey

MBBan findByPrimaryKey(long banId)
                       throws SystemException,
                              NoSuchBanException
Finds the message boards ban with the primary key or throws a NoSuchBanException if it could not be found.

Parameters:
banId - the primary key of the message boards ban to find
Returns:
the message boards ban
Throws:
NoSuchBanException - if a message boards ban with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

MBBan fetchByPrimaryKey(long banId)
                        throws SystemException
Finds the message boards ban with the primary key or returns null if it could not be found.

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

findByGroupId

List<MBBan> findByGroupId(long groupId)
                          throws SystemException
Finds all the message boards bans where groupId = ?.

Parameters:
groupId - the group id to search with
Returns:
the matching message boards bans
Throws:
SystemException - if a system exception occurred

findByGroupId

List<MBBan> findByGroupId(long groupId,
                          int start,
                          int end)
                          throws SystemException
Finds a range of all the message boards bans where groupId = ?.

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:
groupId - the group id to search with
start - the lower bound of the range of message boards bans to return
end - the upper bound of the range of message boards bans to return (not inclusive)
Returns:
the range of matching message boards bans
Throws:
SystemException - if a system exception occurred

findByGroupId

List<MBBan> findByGroupId(long groupId,
                          int start,
                          int end,
                          OrderByComparator orderByComparator)
                          throws SystemException
Finds an ordered range of all the message boards bans where groupId = ?.

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:
groupId - the group id to search with
start - the lower bound of the range of message boards bans to return
end - the upper bound of the range of message boards bans to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message boards bans
Throws:
SystemException - if a system exception occurred

findByGroupId_First

MBBan findByGroupId_First(long groupId,
                          OrderByComparator orderByComparator)
                          throws SystemException,
                                 NoSuchBanException
Finds the first message boards ban in the ordered set where groupId = ?.

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:
groupId - the group id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching message boards ban
Throws:
NoSuchBanException - if a matching message boards ban could not be found
SystemException - if a system exception occurred

findByGroupId_Last

MBBan findByGroupId_Last(long groupId,
                         OrderByComparator orderByComparator)
                         throws SystemException,
                                NoSuchBanException
Finds the last message boards ban in the ordered set where groupId = ?.

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:
groupId - the group id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching message boards ban
Throws:
NoSuchBanException - if a matching message boards ban could not be found
SystemException - if a system exception occurred

findByGroupId_PrevAndNext

MBBan[] findByGroupId_PrevAndNext(long banId,
                                  long groupId,
                                  OrderByComparator orderByComparator)
                                  throws SystemException,
                                         NoSuchBanException
Finds the message boards bans before and after the current message boards ban in the ordered set where groupId = ?.

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:
banId - the primary key of the current message boards ban
groupId - the group id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next message boards ban
Throws:
NoSuchBanException - if a message boards ban with the primary key could not be found
SystemException - if a system exception occurred

findByUserId

List<MBBan> findByUserId(long userId)
                         throws SystemException
Finds all the message boards bans where userId = ?.

Parameters:
userId - the user id to search with
Returns:
the matching message boards bans
Throws:
SystemException - if a system exception occurred

findByUserId

List<MBBan> findByUserId(long userId,
                         int start,
                         int end)
                         throws SystemException
Finds a range of all the message boards bans where userId = ?.

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:
userId - the user id to search with
start - the lower bound of the range of message boards bans to return
end - the upper bound of the range of message boards bans to return (not inclusive)
Returns:
the range of matching message boards bans
Throws:
SystemException - if a system exception occurred

findByUserId

List<MBBan> findByUserId(long userId,
                         int start,
                         int end,
                         OrderByComparator orderByComparator)
                         throws SystemException
Finds an ordered range of all the message boards bans where userId = ?.

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:
userId - the user id to search with
start - the lower bound of the range of message boards bans to return
end - the upper bound of the range of message boards bans to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message boards bans
Throws:
SystemException - if a system exception occurred

findByUserId_First

MBBan findByUserId_First(long userId,
                         OrderByComparator orderByComparator)
                         throws SystemException,
                                NoSuchBanException
Finds the first message boards ban in the ordered set where userId = ?.

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:
userId - the user id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching message boards ban
Throws:
NoSuchBanException - if a matching message boards ban could not be found
SystemException - if a system exception occurred

findByUserId_Last

MBBan findByUserId_Last(long userId,
                        OrderByComparator orderByComparator)
                        throws SystemException,
                               NoSuchBanException
Finds the last message boards ban in the ordered set where userId = ?.

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:
userId - the user id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching message boards ban
Throws:
NoSuchBanException - if a matching message boards ban could not be found
SystemException - if a system exception occurred

findByUserId_PrevAndNext

MBBan[] findByUserId_PrevAndNext(long banId,
                                 long userId,
                                 OrderByComparator orderByComparator)
                                 throws SystemException,
                                        NoSuchBanException
Finds the message boards bans before and after the current message boards ban in the ordered set where userId = ?.

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:
banId - the primary key of the current message boards ban
userId - the user id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next message boards ban
Throws:
NoSuchBanException - if a message boards ban with the primary key could not be found
SystemException - if a system exception occurred

findByBanUserId

List<MBBan> findByBanUserId(long banUserId)
                            throws SystemException
Finds all the message boards bans where banUserId = ?.

Parameters:
banUserId - the ban user id to search with
Returns:
the matching message boards bans
Throws:
SystemException - if a system exception occurred

findByBanUserId

List<MBBan> findByBanUserId(long banUserId,
                            int start,
                            int end)
                            throws SystemException
Finds a range of all the message boards bans where banUserId = ?.

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:
banUserId - the ban user id to search with
start - the lower bound of the range of message boards bans to return
end - the upper bound of the range of message boards bans to return (not inclusive)
Returns:
the range of matching message boards bans
Throws:
SystemException - if a system exception occurred

findByBanUserId

List<MBBan> findByBanUserId(long banUserId,
                            int start,
                            int end,
                            OrderByComparator orderByComparator)
                            throws SystemException
Finds an ordered range of all the message boards bans where banUserId = ?.

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:
banUserId - the ban user id to search with
start - the lower bound of the range of message boards bans to return
end - the upper bound of the range of message boards bans to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching message boards bans
Throws:
SystemException - if a system exception occurred

findByBanUserId_First

MBBan findByBanUserId_First(long banUserId,
                            OrderByComparator orderByComparator)
                            throws SystemException,
                                   NoSuchBanException
Finds the first message boards ban in the ordered set where banUserId = ?.

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:
banUserId - the ban user id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching message boards ban
Throws:
NoSuchBanException - if a matching message boards ban could not be found
SystemException - if a system exception occurred

findByBanUserId_Last

MBBan findByBanUserId_Last(long banUserId,
                           OrderByComparator orderByComparator)
                           throws SystemException,
                                  NoSuchBanException
Finds the last message boards ban in the ordered set where banUserId = ?.

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:
banUserId - the ban user id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching message boards ban
Throws:
NoSuchBanException - if a matching message boards ban could not be found
SystemException - if a system exception occurred

findByBanUserId_PrevAndNext

MBBan[] findByBanUserId_PrevAndNext(long banId,
                                    long banUserId,
                                    OrderByComparator orderByComparator)
                                    throws SystemException,
                                           NoSuchBanException
Finds the message boards bans before and after the current message boards ban in the ordered set where banUserId = ?.

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:
banId - the primary key of the current message boards ban
banUserId - the ban user id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next message boards ban
Throws:
NoSuchBanException - if a message boards ban with the primary key could not be found
SystemException - if a system exception occurred

findByG_B

MBBan findByG_B(long groupId,
                long banUserId)
                throws SystemException,
                       NoSuchBanException
Finds the message boards ban where groupId = ? and banUserId = ? or throws a NoSuchBanException if it could not be found.

Parameters:
groupId - the group id to search with
banUserId - the ban user id to search with
Returns:
the matching message boards ban
Throws:
NoSuchBanException - if a matching message boards ban could not be found
SystemException - if a system exception occurred

fetchByG_B

MBBan fetchByG_B(long groupId,
                 long banUserId)
                 throws SystemException
Finds the message boards ban where groupId = ? and banUserId = ? or returns null if it could not be found. Uses the finder cache.

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

fetchByG_B

MBBan fetchByG_B(long groupId,
                 long banUserId,
                 boolean retrieveFromCache)
                 throws SystemException
Finds the message boards ban where groupId = ? and banUserId = ? or returns null if it could not be found, optionally using the finder cache.

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

findAll

List<MBBan> findAll()
                    throws SystemException
Finds all the message boards bans.

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

findAll

List<MBBan> findAll(int start,
                    int end)
                    throws SystemException
Finds a range of all the message boards bans.

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 bans to return
end - the upper bound of the range of message boards bans to return (not inclusive)
Returns:
the range of message boards bans
Throws:
SystemException - if a system exception occurred

findAll

List<MBBan> findAll(int start,
                    int end,
                    OrderByComparator orderByComparator)
                    throws SystemException
Finds an ordered range of all the message boards bans.

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 bans to return
end - the upper bound of the range of message boards bans to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of message boards bans
Throws:
SystemException - if a system exception occurred

removeByGroupId

void removeByGroupId(long groupId)
                     throws SystemException
Removes all the message boards bans where groupId = ? from the database.

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

removeByUserId

void removeByUserId(long userId)
                    throws SystemException
Removes all the message boards bans where userId = ? from the database.

Parameters:
userId - the user id to search with
Throws:
SystemException - if a system exception occurred

removeByBanUserId

void removeByBanUserId(long banUserId)
                       throws SystemException
Removes all the message boards bans where banUserId = ? from the database.

Parameters:
banUserId - the ban user id to search with
Throws:
SystemException - if a system exception occurred

removeByG_B

void removeByG_B(long groupId,
                 long banUserId)
                 throws SystemException,
                        NoSuchBanException
Removes the message boards ban where groupId = ? and banUserId = ? from the database.

Parameters:
groupId - the group id to search with
banUserId - the ban user id to search with
Throws:
SystemException - if a system exception occurred
NoSuchBanException

removeAll

void removeAll()
               throws SystemException
Removes all the message boards bans from the database.

Throws:
SystemException - if a system exception occurred

countByGroupId

int countByGroupId(long groupId)
                   throws SystemException
Counts all the message boards bans where groupId = ?.

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

countByUserId

int countByUserId(long userId)
                  throws SystemException
Counts all the message boards bans where userId = ?.

Parameters:
userId - the user id to search with
Returns:
the number of matching message boards bans
Throws:
SystemException - if a system exception occurred

countByBanUserId

int countByBanUserId(long banUserId)
                     throws SystemException
Counts all the message boards bans where banUserId = ?.

Parameters:
banUserId - the ban user id to search with
Returns:
the number of matching message boards bans
Throws:
SystemException - if a system exception occurred

countByG_B

int countByG_B(long groupId,
               long banUserId)
               throws SystemException
Counts all the message boards bans where groupId = ? and banUserId = ?.

Parameters:
groupId - the group id to search with
banUserId - the ban user id to search with
Returns:
the number of matching message boards bans
Throws:
SystemException - if a system exception occurred

countAll

int countAll()
             throws SystemException
Counts all the message boards bans.

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

Liferay 6.0.5