public class DispatchLogLocalServiceWrapper extends java.lang.Object implements DispatchLogLocalService, com.liferay.portal.kernel.service.ServiceWrapper<DispatchLogLocalService>
DispatchLogLocalService.DispatchLogLocalService| Constructor and Description |
|---|
DispatchLogLocalServiceWrapper() |
DispatchLogLocalServiceWrapper(DispatchLogLocalService dispatchLogLocalService) |
| Modifier and Type | Method and Description |
|---|---|
DispatchLog |
addDispatchLog(DispatchLog dispatchLog)
Adds the dispatch log to the database.
|
DispatchLog |
addDispatchLog(long userId,
long dispatchTriggerId,
java.util.Date endDate,
java.lang.String error,
java.lang.String output,
java.util.Date startDate,
DispatchTaskStatus dispatchTaskStatus) |
DispatchLog |
createDispatchLog(long dispatchLogId)
Creates a new dispatch log with the primary key.
|
com.liferay.portal.kernel.model.PersistedModel |
createPersistedModel(java.io.Serializable primaryKeyObj) |
DispatchLog |
deleteDispatchLog(DispatchLog dispatchLog)
Deletes the dispatch log from the database.
|
DispatchLog |
deleteDispatchLog(long dispatchLogId)
Deletes the dispatch log with the primary key from the database.
|
void |
deleteDispatchLogs(long dispatchTriggerId) |
com.liferay.portal.kernel.model.PersistedModel |
deletePersistedModel(com.liferay.portal.kernel.model.PersistedModel persistedModel) |
<T> T |
dslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) |
int |
dslQueryCount(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) |
com.liferay.portal.kernel.dao.orm.DynamicQuery |
dynamicQuery() |
<T> java.util.List<T> |
dynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.
|
<T> java.util.List<T> |
dynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
int start,
int end)
Performs a dynamic query on the database and returns a range of the matching rows.
|
<T> java.util.List<T> |
dynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<T> orderByComparator)
Performs a dynamic query on the database and returns an ordered range of the matching rows.
|
long |
dynamicQueryCount(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
Returns the number of rows matching the dynamic query.
|
long |
dynamicQueryCount(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
com.liferay.portal.kernel.dao.orm.Projection projection)
Returns the number of rows matching the dynamic query.
|
DispatchLog |
fetchDispatchLog(long dispatchLogId) |
DispatchLog |
fetchLatestDispatchLog(long dispatchTriggerId) |
DispatchLog |
fetchLatestDispatchLog(long dispatchTriggerId,
DispatchTaskStatus dispatchTaskStatus) |
com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery |
getActionableDynamicQuery() |
com.liferay.portal.kernel.service.persistence.BasePersistence<?> |
getBasePersistence() |
DispatchLog |
getDispatchLog(long dispatchLogId)
Returns the dispatch log with the primary key.
|
java.util.List<DispatchLog> |
getDispatchLogs(int start,
int end)
Returns a range of all the dispatch logs.
|
java.util.List<DispatchLog> |
getDispatchLogs(long dispatchTriggerId,
int start,
int end) |
java.util.List<DispatchLog> |
getDispatchLogs(long dispatchTriggerId,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<DispatchLog> orderByComparator) |
int |
getDispatchLogsCount()
Returns the number of dispatch logs.
|
int |
getDispatchLogsCount(long dispatchTriggerId) |
com.liferay.portal.kernel.dao.orm.IndexableActionableDynamicQuery |
getIndexableActionableDynamicQuery() |
java.lang.String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
com.liferay.portal.kernel.model.PersistedModel |
getPersistedModel(java.io.Serializable primaryKeyObj) |
DispatchLogLocalService |
getWrappedService() |
void |
setWrappedService(DispatchLogLocalService dispatchLogLocalService) |
DispatchLog |
updateDispatchLog(DispatchLog dispatchLog)
Updates the dispatch log in the database or adds it if it does not yet exist.
|
DispatchLog |
updateDispatchLog(long dispatchLogId,
java.util.Date endDate,
java.lang.String error,
java.lang.String output,
DispatchTaskStatus dispatchTaskStatus) |
public DispatchLogLocalServiceWrapper()
public DispatchLogLocalServiceWrapper(DispatchLogLocalService dispatchLogLocalService)
public DispatchLog addDispatchLog(DispatchLog dispatchLog)
Important: Inspect DispatchLogLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
addDispatchLog in interface DispatchLogLocalServicedispatchLog - the dispatch logpublic DispatchLog addDispatchLog(long userId, long dispatchTriggerId, java.util.Date endDate, java.lang.String error, java.lang.String output, java.util.Date startDate, DispatchTaskStatus dispatchTaskStatus) throws com.liferay.portal.kernel.exception.PortalException
addDispatchLog in interface DispatchLogLocalServicecom.liferay.portal.kernel.exception.PortalExceptionpublic DispatchLog createDispatchLog(long dispatchLogId)
createDispatchLog in interface DispatchLogLocalServicedispatchLogId - the primary key for the new dispatch logpublic com.liferay.portal.kernel.model.PersistedModel createPersistedModel(java.io.Serializable primaryKeyObj)
throws com.liferay.portal.kernel.exception.PortalException
createPersistedModel in interface DispatchLogLocalServicecreatePersistedModel in interface com.liferay.portal.kernel.service.PersistedModelLocalServicePortalExceptionpublic DispatchLog deleteDispatchLog(DispatchLog dispatchLog)
Important: Inspect DispatchLogLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
deleteDispatchLog in interface DispatchLogLocalServicedispatchLog - the dispatch logpublic DispatchLog deleteDispatchLog(long dispatchLogId) throws com.liferay.portal.kernel.exception.PortalException
Important: Inspect DispatchLogLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
deleteDispatchLog in interface DispatchLogLocalServicedispatchLogId - the primary key of the dispatch logPortalException - if a dispatch log with the primary key could not be foundpublic void deleteDispatchLogs(long dispatchTriggerId)
deleteDispatchLogs in interface DispatchLogLocalServicepublic com.liferay.portal.kernel.model.PersistedModel deletePersistedModel(com.liferay.portal.kernel.model.PersistedModel persistedModel)
throws com.liferay.portal.kernel.exception.PortalException
deletePersistedModel in interface DispatchLogLocalServicedeletePersistedModel in interface com.liferay.portal.kernel.service.PersistedModelLocalServicePortalExceptionpublic <T> T dslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery)
dslQuery in interface DispatchLogLocalServicedslQuery in interface com.liferay.portal.kernel.service.PersistedModelLocalServicepublic int dslQueryCount(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery)
dslQueryCount in interface DispatchLogLocalServicedslQueryCount in interface com.liferay.portal.kernel.service.PersistedModelLocalServicepublic com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery()
dynamicQuery in interface DispatchLogLocalServicepublic <T> java.util.List<T> dynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
dynamicQuery in interface DispatchLogLocalServicedynamicQuery - the dynamic querypublic <T> java.util.List<T> dynamicQuery(com.liferay.portal.kernel.dao.orm.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.dispatch.model.impl.DispatchLogModelImpl.
dynamicQuery in interface DispatchLogLocalServicedynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)public <T> java.util.List<T> dynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
int start,
int end,
com.liferay.portal.kernel.util.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.dispatch.model.impl.DispatchLogModelImpl.
dynamicQuery in interface DispatchLogLocalServicedynamicQuery - 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 long dynamicQueryCount(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
dynamicQueryCount in interface DispatchLogLocalServicedynamicQuery - the dynamic querypublic long dynamicQueryCount(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
com.liferay.portal.kernel.dao.orm.Projection projection)
dynamicQueryCount in interface DispatchLogLocalServicedynamicQuery - the dynamic queryprojection - the projection to apply to the querypublic DispatchLog fetchDispatchLog(long dispatchLogId)
fetchDispatchLog in interface DispatchLogLocalServicepublic DispatchLog fetchLatestDispatchLog(long dispatchTriggerId)
fetchLatestDispatchLog in interface DispatchLogLocalServicepublic DispatchLog fetchLatestDispatchLog(long dispatchTriggerId, DispatchTaskStatus dispatchTaskStatus)
fetchLatestDispatchLog in interface DispatchLogLocalServicepublic com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery()
getActionableDynamicQuery in interface DispatchLogLocalServicepublic DispatchLog getDispatchLog(long dispatchLogId) throws com.liferay.portal.kernel.exception.PortalException
getDispatchLog in interface DispatchLogLocalServicedispatchLogId - the primary key of the dispatch logPortalException - if a dispatch log with the primary key could not be foundpublic java.util.List<DispatchLog> getDispatchLogs(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.dispatch.model.impl.DispatchLogModelImpl.
getDispatchLogs in interface DispatchLogLocalServicestart - the lower bound of the range of dispatch logsend - the upper bound of the range of dispatch logs (not inclusive)public java.util.List<DispatchLog> getDispatchLogs(long dispatchTriggerId, int start, int end)
getDispatchLogs in interface DispatchLogLocalServicepublic java.util.List<DispatchLog> getDispatchLogs(long dispatchTriggerId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DispatchLog> orderByComparator)
getDispatchLogs in interface DispatchLogLocalServicepublic int getDispatchLogsCount()
getDispatchLogsCount in interface DispatchLogLocalServicepublic int getDispatchLogsCount(long dispatchTriggerId)
getDispatchLogsCount in interface DispatchLogLocalServicepublic com.liferay.portal.kernel.dao.orm.IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
getIndexableActionableDynamicQuery in interface DispatchLogLocalServicepublic java.lang.String getOSGiServiceIdentifier()
getOSGiServiceIdentifier in interface DispatchLogLocalServicepublic com.liferay.portal.kernel.model.PersistedModel getPersistedModel(java.io.Serializable primaryKeyObj)
throws com.liferay.portal.kernel.exception.PortalException
getPersistedModel in interface DispatchLogLocalServicegetPersistedModel in interface com.liferay.portal.kernel.service.PersistedModelLocalServicePortalExceptionpublic DispatchLog updateDispatchLog(DispatchLog dispatchLog)
Important: Inspect DispatchLogLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
updateDispatchLog in interface DispatchLogLocalServicedispatchLog - the dispatch logpublic DispatchLog updateDispatchLog(long dispatchLogId, java.util.Date endDate, java.lang.String error, java.lang.String output, DispatchTaskStatus dispatchTaskStatus) throws com.liferay.portal.kernel.exception.PortalException
updateDispatchLog in interface DispatchLogLocalServicecom.liferay.portal.kernel.exception.PortalExceptionpublic com.liferay.portal.kernel.service.persistence.BasePersistence<?> getBasePersistence()
getBasePersistence in interface com.liferay.portal.kernel.service.PersistedModelLocalServicepublic DispatchLogLocalService getWrappedService()
getWrappedService in interface com.liferay.portal.kernel.service.ServiceWrapper<DispatchLogLocalService>public void setWrappedService(DispatchLogLocalService dispatchLogLocalService)
setWrappedService in interface com.liferay.portal.kernel.service.ServiceWrapper<DispatchLogLocalService>