Package com.liferay.dispatch.service
Interface DispatchLogService
- All Superinterfaces:
com.liferay.portal.kernel.service.BaseService
- All Known Implementing Classes:
DispatchLogServiceWrapper
@AccessControlled
@JSONWebService
@ProviderType
@Transactional(isolation=PORTAL,
rollbackFor={com.liferay.portal.kernel.exception.PortalException.class,com.liferay.portal.kernel.exception.SystemException.class})
public interface DispatchLogService
extends com.liferay.portal.kernel.service.BaseService
Provides the remote service interface for DispatchLog. Methods of this
service are expected to have security checks based on the propagated JAAS
credentials because this service can be accessed remotely.
- See Also:
- Generated:
-
Method Summary
Modifier and TypeMethodDescriptionvoiddeleteDispatchLog(long dispatchLogId) getDispatchLog(long dispatchLogId) getDispatchLogs(long dispatchTriggerId, int start, int end) getDispatchLogs(long dispatchTriggerId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DispatchLog> orderByComparator) intgetDispatchLogsCount(long dispatchTriggerId) Returns the OSGi service identifier.
-
Method Details
-
deleteDispatchLog
void deleteDispatchLog(long dispatchLogId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getDispatchLog
@Transactional(propagation=SUPPORTS, readOnly=true) DispatchLog getDispatchLog(long dispatchLogId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getDispatchLogs
@Transactional(propagation=SUPPORTS, readOnly=true) List<DispatchLog> getDispatchLogs(long dispatchTriggerId, int start, int end) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getDispatchLogs
@Transactional(propagation=SUPPORTS, readOnly=true) List<DispatchLog> getDispatchLogs(long dispatchTriggerId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DispatchLog> orderByComparator) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getDispatchLogsCount
@Transactional(propagation=SUPPORTS, readOnly=true) int getDispatchLogsCount(long dispatchTriggerId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getOSGiServiceIdentifier
String getOSGiServiceIdentifier()Returns the OSGi service identifier.- Returns:
- the OSGi service identifier
-