public class AnalyticsMessageLocalServiceUtil
extends java.lang.Object
com.liferay.analytics.message.storage.service.impl.AnalyticsMessageLocalServiceImpl and
is an access point for service operations in application layer code running
on the local server. Methods of this service will not have security checks
based on the propagated JAAS credentials because this service can only be
accessed from within the same VM.AnalyticsMessageLocalService| Constructor and Description |
|---|
AnalyticsMessageLocalServiceUtil() |
| Modifier and Type | Method and Description |
|---|---|
static AnalyticsMessage |
addAnalyticsMessage(AnalyticsMessage analyticsMessage)
Adds the analytics message to the database.
|
static AnalyticsMessage |
addAnalyticsMessage(long companyId,
long userId,
byte[] body) |
static AnalyticsMessage |
createAnalyticsMessage(long analyticsMessageId)
Creates a new analytics message with the primary key.
|
static PersistedModel |
createPersistedModel(java.io.Serializable primaryKeyObj) |
static AnalyticsMessage |
deleteAnalyticsMessage(AnalyticsMessage analyticsMessage)
Deletes the analytics message from the database.
|
static AnalyticsMessage |
deleteAnalyticsMessage(long analyticsMessageId)
Deletes the analytics message with the primary key from the database.
|
static void |
deleteAnalyticsMessages(java.util.List<AnalyticsMessage> analyticsMessages) |
static void |
deleteAnalyticsMessages(long companyId) |
static PersistedModel |
deletePersistedModel(PersistedModel persistedModel) |
static <T> T |
dslQuery(DSLQuery dslQuery) |
static DynamicQuery |
dynamicQuery() |
static <T> java.util.List<T> |
dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.
|
static <T> java.util.List<T> |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
Performs a dynamic query on the database and returns a range of the matching rows.
|
static <T> java.util.List<T> |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator<T> orderByComparator)
Performs a dynamic query on the database and returns an ordered range of the matching rows.
|
static long |
dynamicQueryCount(DynamicQuery dynamicQuery)
Returns the number of rows matching the dynamic query.
|
static long |
dynamicQueryCount(DynamicQuery dynamicQuery,
Projection projection)
Returns the number of rows matching the dynamic query.
|
static AnalyticsMessage |
fetchAnalyticsMessage(long analyticsMessageId) |
static ActionableDynamicQuery |
getActionableDynamicQuery() |
static AnalyticsMessage |
getAnalyticsMessage(long analyticsMessageId)
Returns the analytics message with the primary key.
|
static java.util.List<AnalyticsMessage> |
getAnalyticsMessages(int start,
int end)
Returns a range of all the analytics messages.
|
static java.util.List<AnalyticsMessage> |
getAnalyticsMessages(long companyId,
int start,
int end) |
static int |
getAnalyticsMessagesCount()
Returns the number of analytics messages.
|
static AnalyticsMessageBodyBlobModel |
getBodyBlobModel(java.io.Serializable primaryKey) |
static java.util.List<java.lang.Long> |
getCompanyIds() |
static IndexableActionableDynamicQuery |
getIndexableActionableDynamicQuery() |
static java.lang.String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
static PersistedModel |
getPersistedModel(java.io.Serializable primaryKeyObj) |
static AnalyticsMessageLocalService |
getService() |
static java.io.InputStream |
openBodyInputStream(long analyticsMessageId) |
static AnalyticsMessage |
updateAnalyticsMessage(AnalyticsMessage analyticsMessage)
Updates the analytics message in the database or adds it if it does not yet exist.
|
public static AnalyticsMessage addAnalyticsMessage(AnalyticsMessage analyticsMessage)
analyticsMessage - the analytics messagepublic static AnalyticsMessage addAnalyticsMessage(long companyId, long userId, byte[] body) throws PortalException
PortalExceptionpublic static AnalyticsMessage createAnalyticsMessage(long analyticsMessageId)
analyticsMessageId - the primary key for the new analytics messagepublic static PersistedModel createPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException
PortalExceptionpublic static AnalyticsMessage deleteAnalyticsMessage(AnalyticsMessage analyticsMessage)
analyticsMessage - the analytics messagepublic static AnalyticsMessage deleteAnalyticsMessage(long analyticsMessageId) throws PortalException
analyticsMessageId - the primary key of the analytics messagePortalException - if a analytics message with the primary key could not be foundpublic static void deleteAnalyticsMessages(java.util.List<AnalyticsMessage> analyticsMessages)
public static void deleteAnalyticsMessages(long companyId)
public static PersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
PortalExceptionpublic static <T> T dslQuery(DSLQuery dslQuery)
public static DynamicQuery dynamicQuery()
public static <T> java.util.List<T> dynamicQuery(DynamicQuery dynamicQuery)
dynamicQuery - the dynamic querypublic static <T> java.util.List<T> dynamicQuery(DynamicQuery dynamicQuery, 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 com.liferay.portal.kernel.dao.orm.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 com.liferay.analytics.message.storage.model.impl.AnalyticsMessageModelImpl.
dynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)public static <T> java.util.List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<T> 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 com.liferay.portal.kernel.dao.orm.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 com.liferay.analytics.message.storage.model.impl.AnalyticsMessageModelImpl.
dynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)orderByComparator - the comparator to order the results by (optionally null)public static long dynamicQueryCount(DynamicQuery dynamicQuery)
dynamicQuery - the dynamic querypublic static long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
dynamicQuery - the dynamic queryprojection - the projection to apply to the querypublic static AnalyticsMessage fetchAnalyticsMessage(long analyticsMessageId)
public static ActionableDynamicQuery getActionableDynamicQuery()
public static AnalyticsMessage getAnalyticsMessage(long analyticsMessageId) throws PortalException
analyticsMessageId - the primary key of the analytics messagePortalException - if a analytics message with the primary key could not be foundpublic static java.util.List<AnalyticsMessage> getAnalyticsMessages(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 com.liferay.portal.kernel.dao.orm.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 com.liferay.analytics.message.storage.model.impl.AnalyticsMessageModelImpl.
start - the lower bound of the range of analytics messagesend - the upper bound of the range of analytics messages (not inclusive)public static java.util.List<AnalyticsMessage> getAnalyticsMessages(long companyId, int start, int end)
public static int getAnalyticsMessagesCount()
public static AnalyticsMessageBodyBlobModel getBodyBlobModel(java.io.Serializable primaryKey)
public static java.util.List<java.lang.Long> getCompanyIds()
public static IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
public static java.lang.String getOSGiServiceIdentifier()
public static PersistedModel getPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException
PortalExceptionpublic static java.io.InputStream openBodyInputStream(long analyticsMessageId)
public static AnalyticsMessage updateAnalyticsMessage(AnalyticsMessage analyticsMessage)
analyticsMessage - the analytics messagepublic static AnalyticsMessageLocalService getService()