public class AnalyticsDeleteMessageUtil
extends java.lang.Object
com.liferay.analytics.message.storage.service.persistence.impl.AnalyticsDeleteMessagePersistenceImpl
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
AnalyticsDeleteMessagePersistence
Constructor and Description |
---|
AnalyticsDeleteMessageUtil() |
Modifier and Type | Method and Description |
---|---|
static void |
cacheResult(AnalyticsDeleteMessage analyticsDeleteMessage)
Caches the analytics delete message in the entity cache if it is enabled.
|
static void |
cacheResult(java.util.List<AnalyticsDeleteMessage> analyticsDeleteMessages)
Caches the analytics delete messages in the entity cache if it is enabled.
|
static void |
clearCache() |
static void |
clearCache(AnalyticsDeleteMessage analyticsDeleteMessage) |
static int |
countAll()
Returns the number of analytics delete messages.
|
static int |
countByC_GtM(long companyId,
java.util.Date modifiedDate)
Returns the number of analytics delete messages where companyId = ? and modifiedDate > ?.
|
static int |
countByCompanyId(long companyId)
Returns the number of analytics delete messages where companyId = ?.
|
static long |
countWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) |
static AnalyticsDeleteMessage |
create(long analyticsDeleteMessageId)
Creates a new analytics delete message with the primary key.
|
static AnalyticsDeleteMessage |
fetchByC_GtM_First(long companyId,
java.util.Date modifiedDate,
com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator)
Returns the first analytics delete message in the ordered set where companyId = ? and modifiedDate > ?.
|
static AnalyticsDeleteMessage |
fetchByC_GtM_Last(long companyId,
java.util.Date modifiedDate,
com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator)
Returns the last analytics delete message in the ordered set where companyId = ? and modifiedDate > ?.
|
static AnalyticsDeleteMessage |
fetchByCompanyId_First(long companyId,
com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator)
Returns the first analytics delete message in the ordered set where companyId = ?.
|
static AnalyticsDeleteMessage |
fetchByCompanyId_Last(long companyId,
com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator)
Returns the last analytics delete message in the ordered set where companyId = ?.
|
static AnalyticsDeleteMessage |
fetchByPrimaryKey(long analyticsDeleteMessageId)
Returns the analytics delete message with the primary key or returns
null if it could not be found. |
static java.util.Map<java.io.Serializable,AnalyticsDeleteMessage> |
fetchByPrimaryKeys(java.util.Set<java.io.Serializable> primaryKeys) |
static java.util.List<AnalyticsDeleteMessage> |
findAll()
Returns all the analytics delete messages.
|
static java.util.List<AnalyticsDeleteMessage> |
findAll(int start,
int end)
Returns a range of all the analytics delete messages.
|
static java.util.List<AnalyticsDeleteMessage> |
findAll(int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator)
Returns an ordered range of all the analytics delete messages.
|
static java.util.List<AnalyticsDeleteMessage> |
findAll(int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator,
boolean useFinderCache)
Returns an ordered range of all the analytics delete messages.
|
static AnalyticsDeleteMessage |
findByC_GtM_First(long companyId,
java.util.Date modifiedDate,
com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator)
Returns the first analytics delete message in the ordered set where companyId = ? and modifiedDate > ?.
|
static AnalyticsDeleteMessage |
findByC_GtM_Last(long companyId,
java.util.Date modifiedDate,
com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator)
Returns the last analytics delete message in the ordered set where companyId = ? and modifiedDate > ?.
|
static AnalyticsDeleteMessage[] |
findByC_GtM_PrevAndNext(long analyticsDeleteMessageId,
long companyId,
java.util.Date modifiedDate,
com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator)
Returns the analytics delete messages before and after the current analytics delete message in the ordered set where companyId = ? and modifiedDate > ?.
|
static java.util.List<AnalyticsDeleteMessage> |
findByC_GtM(long companyId,
java.util.Date modifiedDate)
Returns all the analytics delete messages where companyId = ? and modifiedDate > ?.
|
static java.util.List<AnalyticsDeleteMessage> |
findByC_GtM(long companyId,
java.util.Date modifiedDate,
int start,
int end)
Returns a range of all the analytics delete messages where companyId = ? and modifiedDate > ?.
|
static java.util.List<AnalyticsDeleteMessage> |
findByC_GtM(long companyId,
java.util.Date modifiedDate,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator)
Returns an ordered range of all the analytics delete messages where companyId = ? and modifiedDate > ?.
|
static java.util.List<AnalyticsDeleteMessage> |
findByC_GtM(long companyId,
java.util.Date modifiedDate,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator,
boolean useFinderCache)
Returns an ordered range of all the analytics delete messages where companyId = ? and modifiedDate > ?.
|
static AnalyticsDeleteMessage |
findByCompanyId_First(long companyId,
com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator)
Returns the first analytics delete message in the ordered set where companyId = ?.
|
static AnalyticsDeleteMessage |
findByCompanyId_Last(long companyId,
com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator)
Returns the last analytics delete message in the ordered set where companyId = ?.
|
static AnalyticsDeleteMessage[] |
findByCompanyId_PrevAndNext(long analyticsDeleteMessageId,
long companyId,
com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator)
Returns the analytics delete messages before and after the current analytics delete message in the ordered set where companyId = ?.
|
static java.util.List<AnalyticsDeleteMessage> |
findByCompanyId(long companyId)
Returns all the analytics delete messages where companyId = ?.
|
static java.util.List<AnalyticsDeleteMessage> |
findByCompanyId(long companyId,
int start,
int end)
Returns a range of all the analytics delete messages where companyId = ?.
|
static java.util.List<AnalyticsDeleteMessage> |
findByCompanyId(long companyId,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator)
Returns an ordered range of all the analytics delete messages where companyId = ?.
|
static java.util.List<AnalyticsDeleteMessage> |
findByCompanyId(long companyId,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator,
boolean useFinderCache)
Returns an ordered range of all the analytics delete messages where companyId = ?.
|
static AnalyticsDeleteMessage |
findByPrimaryKey(long analyticsDeleteMessageId)
Returns the analytics delete message with the primary key or throws a
NoSuchDeleteMessageException if it could not be found. |
static java.util.List<AnalyticsDeleteMessage> |
findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) |
static java.util.List<AnalyticsDeleteMessage> |
findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
int start,
int end) |
static java.util.List<AnalyticsDeleteMessage> |
findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator) |
static AnalyticsDeleteMessagePersistence |
getPersistence() |
static AnalyticsDeleteMessage |
remove(long analyticsDeleteMessageId)
Removes the analytics delete message with the primary key from the database.
|
static void |
removeAll()
Removes all the analytics delete messages from the database.
|
static void |
removeByC_GtM(long companyId,
java.util.Date modifiedDate)
Removes all the analytics delete messages where companyId = ? and modifiedDate > ? from the database.
|
static void |
removeByCompanyId(long companyId)
Removes all the analytics delete messages where companyId = ? from the database.
|
static AnalyticsDeleteMessage |
update(AnalyticsDeleteMessage analyticsDeleteMessage) |
static AnalyticsDeleteMessage |
update(AnalyticsDeleteMessage analyticsDeleteMessage,
com.liferay.portal.kernel.service.ServiceContext serviceContext) |
static AnalyticsDeleteMessage |
updateImpl(AnalyticsDeleteMessage analyticsDeleteMessage) |
public static void clearCache()
BasePersistence.clearCache()
public static void clearCache(AnalyticsDeleteMessage analyticsDeleteMessage)
BasePersistence.clearCache(com.liferay.portal.kernel.model.BaseModel)
public static long countWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
BasePersistence.countWithDynamicQuery(DynamicQuery)
public static java.util.Map<java.io.Serializable,AnalyticsDeleteMessage> fetchByPrimaryKeys(java.util.Set<java.io.Serializable> primaryKeys)
BasePersistence.fetchByPrimaryKeys(Set)
public static java.util.List<AnalyticsDeleteMessage> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
BasePersistence.findWithDynamicQuery(DynamicQuery)
public static java.util.List<AnalyticsDeleteMessage> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end)
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)
public static java.util.List<AnalyticsDeleteMessage> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator)
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)
public static AnalyticsDeleteMessage update(AnalyticsDeleteMessage analyticsDeleteMessage)
BasePersistence.update(com.liferay.portal.kernel.model.BaseModel)
public static AnalyticsDeleteMessage update(AnalyticsDeleteMessage analyticsDeleteMessage, com.liferay.portal.kernel.service.ServiceContext serviceContext)
BasePersistence.update(com.liferay.portal.kernel.model.BaseModel, ServiceContext)
public static java.util.List<AnalyticsDeleteMessage> findByCompanyId(long companyId)
companyId
- the company IDpublic static java.util.List<AnalyticsDeleteMessage> findByCompanyId(long companyId, int start, int end)
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, then the query will include the default ORDER BY logic from AnalyticsDeleteMessageModelImpl
.
companyId
- the company IDstart
- the lower bound of the range of analytics delete messagesend
- the upper bound of the range of analytics delete messages (not inclusive)public static java.util.List<AnalyticsDeleteMessage> findByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator)
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, then the query will include the default ORDER BY logic from AnalyticsDeleteMessageModelImpl
.
companyId
- the company IDstart
- the lower bound of the range of analytics delete messagesend
- the upper bound of the range of analytics delete messages (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static java.util.List<AnalyticsDeleteMessage> findByCompanyId(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator, boolean useFinderCache)
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, then the query will include the default ORDER BY logic from AnalyticsDeleteMessageModelImpl
.
companyId
- the company IDstart
- the lower bound of the range of analytics delete messagesend
- the upper bound of the range of analytics delete messages (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)useFinderCache
- whether to use the finder cachepublic static AnalyticsDeleteMessage findByCompanyId_First(long companyId, com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator) throws NoSuchDeleteMessageException
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchDeleteMessageException
- if a matching analytics delete message could not be foundpublic static AnalyticsDeleteMessage fetchByCompanyId_First(long companyId, com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator)
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching analytics delete message could not be foundpublic static AnalyticsDeleteMessage findByCompanyId_Last(long companyId, com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator) throws NoSuchDeleteMessageException
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchDeleteMessageException
- if a matching analytics delete message could not be foundpublic static AnalyticsDeleteMessage fetchByCompanyId_Last(long companyId, com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator)
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching analytics delete message could not be foundpublic static AnalyticsDeleteMessage[] findByCompanyId_PrevAndNext(long analyticsDeleteMessageId, long companyId, com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator) throws NoSuchDeleteMessageException
analyticsDeleteMessageId
- the primary key of the current analytics delete messagecompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchDeleteMessageException
- if a analytics delete message with the primary key could not be foundpublic static void removeByCompanyId(long companyId)
companyId
- the company IDpublic static int countByCompanyId(long companyId)
companyId
- the company IDpublic static java.util.List<AnalyticsDeleteMessage> findByC_GtM(long companyId, java.util.Date modifiedDate)
companyId
- the company IDmodifiedDate
- the modified datepublic static java.util.List<AnalyticsDeleteMessage> findByC_GtM(long companyId, java.util.Date modifiedDate, int start, int end)
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, then the query will include the default ORDER BY logic from AnalyticsDeleteMessageModelImpl
.
companyId
- the company IDmodifiedDate
- the modified datestart
- the lower bound of the range of analytics delete messagesend
- the upper bound of the range of analytics delete messages (not inclusive)public static java.util.List<AnalyticsDeleteMessage> findByC_GtM(long companyId, java.util.Date modifiedDate, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator)
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, then the query will include the default ORDER BY logic from AnalyticsDeleteMessageModelImpl
.
companyId
- the company IDmodifiedDate
- the modified datestart
- the lower bound of the range of analytics delete messagesend
- the upper bound of the range of analytics delete messages (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static java.util.List<AnalyticsDeleteMessage> findByC_GtM(long companyId, java.util.Date modifiedDate, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator, boolean useFinderCache)
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, then the query will include the default ORDER BY logic from AnalyticsDeleteMessageModelImpl
.
companyId
- the company IDmodifiedDate
- the modified datestart
- the lower bound of the range of analytics delete messagesend
- the upper bound of the range of analytics delete messages (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)useFinderCache
- whether to use the finder cachepublic static AnalyticsDeleteMessage findByC_GtM_First(long companyId, java.util.Date modifiedDate, com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator) throws NoSuchDeleteMessageException
companyId
- the company IDmodifiedDate
- the modified dateorderByComparator
- the comparator to order the set by (optionally null
)NoSuchDeleteMessageException
- if a matching analytics delete message could not be foundpublic static AnalyticsDeleteMessage fetchByC_GtM_First(long companyId, java.util.Date modifiedDate, com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator)
companyId
- the company IDmodifiedDate
- the modified dateorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching analytics delete message could not be foundpublic static AnalyticsDeleteMessage findByC_GtM_Last(long companyId, java.util.Date modifiedDate, com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator) throws NoSuchDeleteMessageException
companyId
- the company IDmodifiedDate
- the modified dateorderByComparator
- the comparator to order the set by (optionally null
)NoSuchDeleteMessageException
- if a matching analytics delete message could not be foundpublic static AnalyticsDeleteMessage fetchByC_GtM_Last(long companyId, java.util.Date modifiedDate, com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator)
companyId
- the company IDmodifiedDate
- the modified dateorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching analytics delete message could not be foundpublic static AnalyticsDeleteMessage[] findByC_GtM_PrevAndNext(long analyticsDeleteMessageId, long companyId, java.util.Date modifiedDate, com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator) throws NoSuchDeleteMessageException
analyticsDeleteMessageId
- the primary key of the current analytics delete messagecompanyId
- the company IDmodifiedDate
- the modified dateorderByComparator
- the comparator to order the set by (optionally null
)NoSuchDeleteMessageException
- if a analytics delete message with the primary key could not be foundpublic static void removeByC_GtM(long companyId, java.util.Date modifiedDate)
companyId
- the company IDmodifiedDate
- the modified datepublic static int countByC_GtM(long companyId, java.util.Date modifiedDate)
companyId
- the company IDmodifiedDate
- the modified datepublic static void cacheResult(AnalyticsDeleteMessage analyticsDeleteMessage)
analyticsDeleteMessage
- the analytics delete messagepublic static void cacheResult(java.util.List<AnalyticsDeleteMessage> analyticsDeleteMessages)
analyticsDeleteMessages
- the analytics delete messagespublic static AnalyticsDeleteMessage create(long analyticsDeleteMessageId)
analyticsDeleteMessageId
- the primary key for the new analytics delete messagepublic static AnalyticsDeleteMessage remove(long analyticsDeleteMessageId) throws NoSuchDeleteMessageException
analyticsDeleteMessageId
- the primary key of the analytics delete messageNoSuchDeleteMessageException
- if a analytics delete message with the primary key could not be foundpublic static AnalyticsDeleteMessage updateImpl(AnalyticsDeleteMessage analyticsDeleteMessage)
public static AnalyticsDeleteMessage findByPrimaryKey(long analyticsDeleteMessageId) throws NoSuchDeleteMessageException
NoSuchDeleteMessageException
if it could not be found.analyticsDeleteMessageId
- the primary key of the analytics delete messageNoSuchDeleteMessageException
- if a analytics delete message with the primary key could not be foundpublic static AnalyticsDeleteMessage fetchByPrimaryKey(long analyticsDeleteMessageId)
null
if it could not be found.analyticsDeleteMessageId
- the primary key of the analytics delete messagenull
if a analytics delete message with the primary key could not be foundpublic static java.util.List<AnalyticsDeleteMessage> findAll()
public static java.util.List<AnalyticsDeleteMessage> findAll(int start, int end)
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, then the query will include the default ORDER BY logic from AnalyticsDeleteMessageModelImpl
.
start
- the lower bound of the range of analytics delete messagesend
- the upper bound of the range of analytics delete messages (not inclusive)public static java.util.List<AnalyticsDeleteMessage> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator)
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, then the query will include the default ORDER BY logic from AnalyticsDeleteMessageModelImpl
.
start
- the lower bound of the range of analytics delete messagesend
- the upper bound of the range of analytics delete messages (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static java.util.List<AnalyticsDeleteMessage> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AnalyticsDeleteMessage> orderByComparator, boolean useFinderCache)
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, then the query will include the default ORDER BY logic from AnalyticsDeleteMessageModelImpl
.
start
- the lower bound of the range of analytics delete messagesend
- the upper bound of the range of analytics delete messages (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)useFinderCache
- whether to use the finder cachepublic static void removeAll()
public static int countAll()
public static AnalyticsDeleteMessagePersistence getPersistence()