@ProviderType
public class MBBanUtil
extends java.lang.Object
MBBanPersistenceImpl 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
MBBanPersistence,
MBBanPersistenceImpl| Constructor and Description |
|---|
MBBanUtil() |
| Modifier and Type | Method and Description |
|---|---|
static void |
cacheResult(java.util.List<MBBan> mbBans)
Caches the message boards bans in the entity cache if it is enabled.
|
static void |
cacheResult(MBBan mbBan)
Caches the message boards ban in the entity cache if it is enabled.
|
static void |
clearCache() |
static void |
clearCache(MBBan mbBan) |
static int |
countAll()
Returns the number of message boards bans.
|
static int |
countByBanUserId(long banUserId)
Returns the number of message boards bans where banUserId = ?.
|
static int |
countByG_B(long groupId,
long banUserId)
Returns the number of message boards bans where groupId = ? and banUserId = ?.
|
static int |
countByGroupId(long groupId)
Returns the number of message boards bans where groupId = ?.
|
static int |
countByUserId(long userId)
Returns the number of message boards bans where userId = ?.
|
static int |
countByUuid_C(java.lang.String uuid,
long companyId)
Returns the number of message boards bans where uuid = ? and companyId = ?.
|
static int |
countByUUID_G(java.lang.String uuid,
long groupId)
Returns the number of message boards bans where uuid = ? and groupId = ?.
|
static int |
countByUuid(java.lang.String uuid)
Returns the number of message boards bans where uuid = ?.
|
static long |
countWithDynamicQuery(DynamicQuery dynamicQuery) |
static MBBan |
create(long banId)
Creates a new message boards ban with the primary key.
|
static MBBan |
fetchByBanUserId_First(long banUserId,
OrderByComparator orderByComparator)
Returns the first message boards ban in the ordered set where banUserId = ?.
|
static MBBan |
fetchByBanUserId_Last(long banUserId,
OrderByComparator orderByComparator)
Returns the last message boards ban in the ordered set where banUserId = ?.
|
static MBBan |
fetchByG_B(long groupId,
long banUserId)
Returns the message boards ban where groupId = ? and banUserId = ? or returns
null if it could not be found. |
static MBBan |
fetchByG_B(long groupId,
long banUserId,
boolean retrieveFromCache)
Returns the message boards ban where groupId = ? and banUserId = ? or returns
null if it could not be found, optionally using the finder cache. |
static MBBan |
fetchByGroupId_First(long groupId,
OrderByComparator orderByComparator)
Returns the first message boards ban in the ordered set where groupId = ?.
|
static MBBan |
fetchByGroupId_Last(long groupId,
OrderByComparator orderByComparator)
Returns the last message boards ban in the ordered set where groupId = ?.
|
static MBBan |
fetchByPrimaryKey(long banId)
Returns the message boards ban with the primary key or returns
null if it could not be found. |
static MBBan |
fetchByUserId_First(long userId,
OrderByComparator orderByComparator)
Returns the first message boards ban in the ordered set where userId = ?.
|
static MBBan |
fetchByUserId_Last(long userId,
OrderByComparator orderByComparator)
Returns the last message boards ban in the ordered set where userId = ?.
|
static MBBan |
fetchByUuid_C_First(java.lang.String uuid,
long companyId,
OrderByComparator orderByComparator)
Returns the first message boards ban in the ordered set where uuid = ? and companyId = ?.
|
static MBBan |
fetchByUuid_C_Last(java.lang.String uuid,
long companyId,
OrderByComparator orderByComparator)
Returns the last message boards ban in the ordered set where uuid = ? and companyId = ?.
|
static MBBan |
fetchByUuid_First(java.lang.String uuid,
OrderByComparator orderByComparator)
Returns the first message boards ban in the ordered set where uuid = ?.
|
static MBBan |
fetchByUUID_G(java.lang.String uuid,
long groupId)
Returns the message boards ban where uuid = ? and groupId = ? or returns
null if it could not be found. |
static MBBan |
fetchByUUID_G(java.lang.String uuid,
long groupId,
boolean retrieveFromCache)
Returns the message boards ban where uuid = ? and groupId = ? or returns
null if it could not be found, optionally using the finder cache. |
static MBBan |
fetchByUuid_Last(java.lang.String uuid,
OrderByComparator orderByComparator)
Returns the last message boards ban in the ordered set where uuid = ?.
|
static java.util.List<MBBan> |
findAll()
Returns all the message boards bans.
|
static java.util.List<MBBan> |
findAll(int start,
int end)
Returns a range of all the message boards bans.
|
static java.util.List<MBBan> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards bans.
|
static MBBan |
findByBanUserId_First(long banUserId,
OrderByComparator orderByComparator)
Returns the first message boards ban in the ordered set where banUserId = ?.
|
static MBBan |
findByBanUserId_Last(long banUserId,
OrderByComparator orderByComparator)
Returns the last message boards ban in the ordered set where banUserId = ?.
|
static MBBan[] |
findByBanUserId_PrevAndNext(long banId,
long banUserId,
OrderByComparator orderByComparator)
Returns the message boards bans before and after the current message boards ban in the ordered set where banUserId = ?.
|
static java.util.List<MBBan> |
findByBanUserId(long banUserId)
Returns all the message boards bans where banUserId = ?.
|
static java.util.List<MBBan> |
findByBanUserId(long banUserId,
int start,
int end)
Returns a range of all the message boards bans where banUserId = ?.
|
static java.util.List<MBBan> |
findByBanUserId(long banUserId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards bans where banUserId = ?.
|
static MBBan |
findByG_B(long groupId,
long banUserId)
Returns the message boards ban where groupId = ? and banUserId = ? or throws a
NoSuchBanException if it could not be found. |
static MBBan |
findByGroupId_First(long groupId,
OrderByComparator orderByComparator)
Returns the first message boards ban in the ordered set where groupId = ?.
|
static MBBan |
findByGroupId_Last(long groupId,
OrderByComparator orderByComparator)
Returns the last message boards ban in the ordered set where groupId = ?.
|
static MBBan[] |
findByGroupId_PrevAndNext(long banId,
long groupId,
OrderByComparator orderByComparator)
Returns the message boards bans before and after the current message boards ban in the ordered set where groupId = ?.
|
static java.util.List<MBBan> |
findByGroupId(long groupId)
Returns all the message boards bans where groupId = ?.
|
static java.util.List<MBBan> |
findByGroupId(long groupId,
int start,
int end)
Returns a range of all the message boards bans where groupId = ?.
|
static java.util.List<MBBan> |
findByGroupId(long groupId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards bans where groupId = ?.
|
static MBBan |
findByPrimaryKey(long banId)
Returns the message boards ban with the primary key or throws a
NoSuchBanException if it could not be found. |
static MBBan |
findByUserId_First(long userId,
OrderByComparator orderByComparator)
Returns the first message boards ban in the ordered set where userId = ?.
|
static MBBan |
findByUserId_Last(long userId,
OrderByComparator orderByComparator)
Returns the last message boards ban in the ordered set where userId = ?.
|
static MBBan[] |
findByUserId_PrevAndNext(long banId,
long userId,
OrderByComparator orderByComparator)
Returns the message boards bans before and after the current message boards ban in the ordered set where userId = ?.
|
static java.util.List<MBBan> |
findByUserId(long userId)
Returns all the message boards bans where userId = ?.
|
static java.util.List<MBBan> |
findByUserId(long userId,
int start,
int end)
Returns a range of all the message boards bans where userId = ?.
|
static java.util.List<MBBan> |
findByUserId(long userId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards bans where userId = ?.
|
static MBBan |
findByUuid_C_First(java.lang.String uuid,
long companyId,
OrderByComparator orderByComparator)
Returns the first message boards ban in the ordered set where uuid = ? and companyId = ?.
|
static MBBan |
findByUuid_C_Last(java.lang.String uuid,
long companyId,
OrderByComparator orderByComparator)
Returns the last message boards ban in the ordered set where uuid = ? and companyId = ?.
|
static MBBan[] |
findByUuid_C_PrevAndNext(long banId,
java.lang.String uuid,
long companyId,
OrderByComparator orderByComparator)
Returns the message boards bans before and after the current message boards ban in the ordered set where uuid = ? and companyId = ?.
|
static java.util.List<MBBan> |
findByUuid_C(java.lang.String uuid,
long companyId)
Returns all the message boards bans where uuid = ? and companyId = ?.
|
static java.util.List<MBBan> |
findByUuid_C(java.lang.String uuid,
long companyId,
int start,
int end)
Returns a range of all the message boards bans where uuid = ? and companyId = ?.
|
static java.util.List<MBBan> |
findByUuid_C(java.lang.String uuid,
long companyId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards bans where uuid = ? and companyId = ?.
|
static MBBan |
findByUuid_First(java.lang.String uuid,
OrderByComparator orderByComparator)
Returns the first message boards ban in the ordered set where uuid = ?.
|
static MBBan |
findByUUID_G(java.lang.String uuid,
long groupId)
Returns the message boards ban where uuid = ? and groupId = ? or throws a
NoSuchBanException if it could not be found. |
static MBBan |
findByUuid_Last(java.lang.String uuid,
OrderByComparator orderByComparator)
Returns the last message boards ban in the ordered set where uuid = ?.
|
static MBBan[] |
findByUuid_PrevAndNext(long banId,
java.lang.String uuid,
OrderByComparator orderByComparator)
Returns the message boards bans before and after the current message boards ban in the ordered set where uuid = ?.
|
static java.util.List<MBBan> |
findByUuid(java.lang.String uuid)
Returns all the message boards bans where uuid = ?.
|
static java.util.List<MBBan> |
findByUuid(java.lang.String uuid,
int start,
int end)
Returns a range of all the message boards bans where uuid = ?.
|
static java.util.List<MBBan> |
findByUuid(java.lang.String uuid,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the message boards bans where uuid = ?.
|
static java.util.List<MBBan> |
findWithDynamicQuery(DynamicQuery dynamicQuery) |
static java.util.List<MBBan> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end) |
static java.util.List<MBBan> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator) |
static MBBanPersistence |
getPersistence() |
static MBBan |
remove(long banId)
Removes the message boards ban with the primary key from the database.
|
static void |
removeAll()
Removes all the message boards bans from the database.
|
static void |
removeByBanUserId(long banUserId)
Removes all the message boards bans where banUserId = ? from the database.
|
static MBBan |
removeByG_B(long groupId,
long banUserId)
Removes the message boards ban where groupId = ? and banUserId = ? from the database.
|
static void |
removeByGroupId(long groupId)
Removes all the message boards bans where groupId = ? from the database.
|
static void |
removeByUserId(long userId)
Removes all the message boards bans where userId = ? from the database.
|
static void |
removeByUuid_C(java.lang.String uuid,
long companyId)
Removes all the message boards bans where uuid = ? and companyId = ? from the database.
|
static MBBan |
removeByUUID_G(java.lang.String uuid,
long groupId)
Removes the message boards ban where uuid = ? and groupId = ? from the database.
|
static void |
removeByUuid(java.lang.String uuid)
Removes all the message boards bans where uuid = ? from the database.
|
void |
setPersistence(MBBanPersistence persistence)
Deprecated.
As of 6.2.0
|
static MBBan |
update(MBBan mbBan) |
static MBBan |
update(MBBan mbBan,
ServiceContext serviceContext) |
static MBBan |
updateImpl(MBBan mbBan) |
public static void clearCache()
BasePersistence.clearCache()public static void clearCache(MBBan mbBan)
public static long countWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemExceptionBasePersistence.countWithDynamicQuery(DynamicQuery)public static java.util.List<MBBan> findWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemExceptionBasePersistence.findWithDynamicQuery(DynamicQuery)public static java.util.List<MBBan> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end) throws SystemException
public static java.util.List<MBBan> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator) throws SystemException
public static MBBan update(MBBan mbBan) throws SystemException
public static MBBan update(MBBan mbBan, ServiceContext serviceContext) throws SystemException
public static java.util.List<MBBan> findByUuid(java.lang.String uuid) throws SystemException
uuid - the uuidSystemException - if a system exception occurredpublic static java.util.List<MBBan> 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 MBBanModelImpl. 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 bansend - the upper bound of the range of message boards bans (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBBan> 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 MBBanModelImpl. 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 bansend - the upper bound of the range of message boards bans (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static MBBan findByUuid_First(java.lang.String uuid, OrderByComparator orderByComparator) throws SystemException, NoSuchBanException
uuid - the uuidorderByComparator - the comparator to order the set by (optionally null)NoSuchBanException - if a matching message boards ban could not be foundSystemException - if a system exception occurredpublic static MBBan 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 ban could not be foundSystemException - if a system exception occurredpublic static MBBan findByUuid_Last(java.lang.String uuid, OrderByComparator orderByComparator) throws SystemException, NoSuchBanException
uuid - the uuidorderByComparator - the comparator to order the set by (optionally null)NoSuchBanException - if a matching message boards ban could not be foundSystemException - if a system exception occurredpublic static MBBan 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 ban could not be foundSystemException - if a system exception occurredpublic static MBBan[] findByUuid_PrevAndNext(long banId, java.lang.String uuid, OrderByComparator orderByComparator) throws SystemException, NoSuchBanException
banId - the primary key of the current message boards banuuid - the uuidorderByComparator - the comparator to order the set by (optionally null)NoSuchBanException - if a message boards ban 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 MBBan findByUUID_G(java.lang.String uuid, long groupId) throws SystemException, NoSuchBanException
NoSuchBanException if it could not be found.uuid - the uuidgroupId - the group IDNoSuchBanException - if a matching message boards ban could not be foundSystemException - if a system exception occurredpublic static MBBan 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 ban could not be foundSystemException - if a system exception occurredpublic static MBBan 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 ban could not be foundSystemException - if a system exception occurredpublic static MBBan removeByUUID_G(java.lang.String uuid, long groupId) throws SystemException, NoSuchBanException
uuid - the uuidgroupId - the group IDSystemException - if a system exception occurredNoSuchBanExceptionpublic 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<MBBan> 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<MBBan> 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 MBBanModelImpl. 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 bansend - the upper bound of the range of message boards bans (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBBan> 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 MBBanModelImpl. 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 bansend - the upper bound of the range of message boards bans (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static MBBan findByUuid_C_First(java.lang.String uuid, long companyId, OrderByComparator orderByComparator) throws SystemException, NoSuchBanException
uuid - the uuidcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchBanException - if a matching message boards ban could not be foundSystemException - if a system exception occurredpublic static MBBan 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 ban could not be foundSystemException - if a system exception occurredpublic static MBBan findByUuid_C_Last(java.lang.String uuid, long companyId, OrderByComparator orderByComparator) throws SystemException, NoSuchBanException
uuid - the uuidcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchBanException - if a matching message boards ban could not be foundSystemException - if a system exception occurredpublic static MBBan 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 ban could not be foundSystemException - if a system exception occurredpublic static MBBan[] findByUuid_C_PrevAndNext(long banId, java.lang.String uuid, long companyId, OrderByComparator orderByComparator) throws SystemException, NoSuchBanException
banId - the primary key of the current message boards banuuid - the uuidcompanyId - the company IDorderByComparator - the comparator to order the set by (optionally null)NoSuchBanException - if a message boards ban 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<MBBan> findByGroupId(long groupId) throws SystemException
groupId - the group IDSystemException - if a system exception occurredpublic static java.util.List<MBBan> findByGroupId(long groupId, 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 MBBanModelImpl. 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.
groupId - the group IDstart - the lower bound of the range of message boards bansend - the upper bound of the range of message boards bans (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBBan> findByGroupId(long groupId, 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 MBBanModelImpl. 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.
groupId - the group IDstart - the lower bound of the range of message boards bansend - the upper bound of the range of message boards bans (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static MBBan findByGroupId_First(long groupId, OrderByComparator orderByComparator) throws SystemException, NoSuchBanException
groupId - the group IDorderByComparator - the comparator to order the set by (optionally null)NoSuchBanException - if a matching message boards ban could not be foundSystemException - if a system exception occurredpublic static MBBan fetchByGroupId_First(long groupId, OrderByComparator orderByComparator) throws SystemException
groupId - the group IDorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards ban could not be foundSystemException - if a system exception occurredpublic static MBBan findByGroupId_Last(long groupId, OrderByComparator orderByComparator) throws SystemException, NoSuchBanException
groupId - the group IDorderByComparator - the comparator to order the set by (optionally null)NoSuchBanException - if a matching message boards ban could not be foundSystemException - if a system exception occurredpublic static MBBan fetchByGroupId_Last(long groupId, OrderByComparator orderByComparator) throws SystemException
groupId - the group IDorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards ban could not be foundSystemException - if a system exception occurredpublic static MBBan[] findByGroupId_PrevAndNext(long banId, long groupId, OrderByComparator orderByComparator) throws SystemException, NoSuchBanException
banId - the primary key of the current message boards bangroupId - the group IDorderByComparator - the comparator to order the set by (optionally null)NoSuchBanException - if a message boards ban with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByGroupId(long groupId)
throws SystemException
groupId - the group IDSystemException - if a system exception occurredpublic static int countByGroupId(long groupId)
throws SystemException
groupId - the group IDSystemException - if a system exception occurredpublic static java.util.List<MBBan> findByUserId(long userId) throws SystemException
userId - the user IDSystemException - if a system exception occurredpublic static java.util.List<MBBan> findByUserId(long userId, 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 MBBanModelImpl. 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.
userId - the user IDstart - the lower bound of the range of message boards bansend - the upper bound of the range of message boards bans (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBBan> findByUserId(long userId, 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 MBBanModelImpl. 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.
userId - the user IDstart - the lower bound of the range of message boards bansend - the upper bound of the range of message boards bans (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static MBBan findByUserId_First(long userId, OrderByComparator orderByComparator) throws SystemException, NoSuchBanException
userId - the user IDorderByComparator - the comparator to order the set by (optionally null)NoSuchBanException - if a matching message boards ban could not be foundSystemException - if a system exception occurredpublic static MBBan fetchByUserId_First(long userId, OrderByComparator orderByComparator) throws SystemException
userId - the user IDorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards ban could not be foundSystemException - if a system exception occurredpublic static MBBan findByUserId_Last(long userId, OrderByComparator orderByComparator) throws SystemException, NoSuchBanException
userId - the user IDorderByComparator - the comparator to order the set by (optionally null)NoSuchBanException - if a matching message boards ban could not be foundSystemException - if a system exception occurredpublic static MBBan fetchByUserId_Last(long userId, OrderByComparator orderByComparator) throws SystemException
userId - the user IDorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards ban could not be foundSystemException - if a system exception occurredpublic static MBBan[] findByUserId_PrevAndNext(long banId, long userId, OrderByComparator orderByComparator) throws SystemException, NoSuchBanException
banId - the primary key of the current message boards banuserId - the user IDorderByComparator - the comparator to order the set by (optionally null)NoSuchBanException - if a message boards ban with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByUserId(long userId)
throws SystemException
userId - the user IDSystemException - if a system exception occurredpublic static int countByUserId(long userId)
throws SystemException
userId - the user IDSystemException - if a system exception occurredpublic static java.util.List<MBBan> findByBanUserId(long banUserId) throws SystemException
banUserId - the ban user IDSystemException - if a system exception occurredpublic static java.util.List<MBBan> findByBanUserId(long banUserId, 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 MBBanModelImpl. 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.
banUserId - the ban user IDstart - the lower bound of the range of message boards bansend - the upper bound of the range of message boards bans (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBBan> findByBanUserId(long banUserId, 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 MBBanModelImpl. 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.
banUserId - the ban user IDstart - the lower bound of the range of message boards bansend - the upper bound of the range of message boards bans (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static MBBan findByBanUserId_First(long banUserId, OrderByComparator orderByComparator) throws SystemException, NoSuchBanException
banUserId - the ban user IDorderByComparator - the comparator to order the set by (optionally null)NoSuchBanException - if a matching message boards ban could not be foundSystemException - if a system exception occurredpublic static MBBan fetchByBanUserId_First(long banUserId, OrderByComparator orderByComparator) throws SystemException
banUserId - the ban user IDorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards ban could not be foundSystemException - if a system exception occurredpublic static MBBan findByBanUserId_Last(long banUserId, OrderByComparator orderByComparator) throws SystemException, NoSuchBanException
banUserId - the ban user IDorderByComparator - the comparator to order the set by (optionally null)NoSuchBanException - if a matching message boards ban could not be foundSystemException - if a system exception occurredpublic static MBBan fetchByBanUserId_Last(long banUserId, OrderByComparator orderByComparator) throws SystemException
banUserId - the ban user IDorderByComparator - the comparator to order the set by (optionally null)null if a matching message boards ban could not be foundSystemException - if a system exception occurredpublic static MBBan[] findByBanUserId_PrevAndNext(long banId, long banUserId, OrderByComparator orderByComparator) throws SystemException, NoSuchBanException
banId - the primary key of the current message boards banbanUserId - the ban user IDorderByComparator - the comparator to order the set by (optionally null)NoSuchBanException - if a message boards ban with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByBanUserId(long banUserId)
throws SystemException
banUserId - the ban user IDSystemException - if a system exception occurredpublic static int countByBanUserId(long banUserId)
throws SystemException
banUserId - the ban user IDSystemException - if a system exception occurredpublic static MBBan findByG_B(long groupId, long banUserId) throws SystemException, NoSuchBanException
NoSuchBanException if it could not be found.groupId - the group IDbanUserId - the ban user IDNoSuchBanException - if a matching message boards ban could not be foundSystemException - if a system exception occurredpublic static MBBan fetchByG_B(long groupId, long banUserId) throws SystemException
null if it could not be found. Uses the finder cache.groupId - the group IDbanUserId - the ban user IDnull if a matching message boards ban could not be foundSystemException - if a system exception occurredpublic static MBBan fetchByG_B(long groupId, long banUserId, boolean retrieveFromCache) throws SystemException
null if it could not be found, optionally using the finder cache.groupId - the group IDbanUserId - the ban user IDretrieveFromCache - whether to use the finder cachenull if a matching message boards ban could not be foundSystemException - if a system exception occurredpublic static MBBan removeByG_B(long groupId, long banUserId) throws SystemException, NoSuchBanException
groupId - the group IDbanUserId - the ban user IDSystemException - if a system exception occurredNoSuchBanExceptionpublic static int countByG_B(long groupId,
long banUserId)
throws SystemException
groupId - the group IDbanUserId - the ban user IDSystemException - if a system exception occurredpublic static void cacheResult(MBBan mbBan)
mbBan - the message boards banpublic static void cacheResult(java.util.List<MBBan> mbBans)
mbBans - the message boards banspublic static MBBan create(long banId)
banId - the primary key for the new message boards banpublic static MBBan remove(long banId) throws SystemException, NoSuchBanException
banId - the primary key of the message boards banNoSuchBanException - if a message boards ban with the primary key could not be foundSystemException - if a system exception occurredpublic static MBBan updateImpl(MBBan mbBan) throws SystemException
SystemExceptionpublic static MBBan findByPrimaryKey(long banId) throws SystemException, NoSuchBanException
NoSuchBanException if it could not be found.banId - the primary key of the message boards banNoSuchBanException - if a message boards ban with the primary key could not be foundSystemException - if a system exception occurredpublic static MBBan fetchByPrimaryKey(long banId) throws SystemException
null if it could not be found.banId - the primary key of the message boards bannull if a message boards ban with the primary key could not be foundSystemException - if a system exception occurredpublic static java.util.List<MBBan> findAll() throws SystemException
SystemException - if a system exception occurredpublic static java.util.List<MBBan> 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 MBBanModelImpl. 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 bansend - the upper bound of the range of message boards bans (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<MBBan> 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 MBBanModelImpl. 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 bansend - the upper bound of the range of message boards bans (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 MBBanPersistence getPersistence()
public void setPersistence(MBBanPersistence persistence)