public class KaleoTaskLocalServiceWrapper extends java.lang.Object implements KaleoTaskLocalService, ServiceWrapper<KaleoTaskLocalService>
KaleoTaskLocalService.KaleoTaskLocalService| Constructor and Description |
|---|
KaleoTaskLocalServiceWrapper(KaleoTaskLocalService kaleoTaskLocalService) |
| Modifier and Type | Method and Description |
|---|---|
KaleoTask |
addKaleoTask(KaleoTask kaleoTask)
Adds the kaleo task to the database.
|
KaleoTask |
addKaleoTask(long kaleoDefinitionId,
long kaleoDefinitionVersionId,
long kaleoNodeId,
Task task,
ServiceContext serviceContext) |
KaleoTask |
createKaleoTask(long kaleoTaskId)
Creates a new kaleo task with the primary key.
|
PersistedModel |
createPersistedModel(java.io.Serializable primaryKeyObj) |
void |
deleteCompanyKaleoTasks(long companyId) |
void |
deleteKaleoDefinitionVersionKaleoTasks(long kaleoDefinitionVersionId) |
KaleoTask |
deleteKaleoTask(KaleoTask kaleoTask)
Deletes the kaleo task from the database.
|
KaleoTask |
deleteKaleoTask(long kaleoTaskId)
Deletes the kaleo task with the primary key from the database.
|
PersistedModel |
deletePersistedModel(PersistedModel persistedModel) |
<T> T |
dslQuery(DSLQuery dslQuery) |
DynamicQuery |
dynamicQuery() |
<T> java.util.List<T> |
dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.
|
<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.
|
<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.
|
long |
dynamicQueryCount(DynamicQuery dynamicQuery)
Returns the number of rows matching the dynamic query.
|
long |
dynamicQueryCount(DynamicQuery dynamicQuery,
Projection projection)
Returns the number of rows matching the dynamic query.
|
KaleoTask |
fetchKaleoTask(long kaleoTaskId) |
ActionableDynamicQuery |
getActionableDynamicQuery() |
IndexableActionableDynamicQuery |
getIndexableActionableDynamicQuery() |
KaleoTask |
getKaleoNodeKaleoTask(long kaleoNodeId) |
KaleoTask |
getKaleoTask(long kaleoTaskId)
Returns the kaleo task with the primary key.
|
java.util.List<KaleoTask> |
getKaleoTasks(int start,
int end)
Returns a range of all the kaleo tasks.
|
int |
getKaleoTasksCount()
Returns the number of kaleo tasks.
|
java.lang.String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
PersistedModel |
getPersistedModel(java.io.Serializable primaryKeyObj) |
KaleoTaskLocalService |
getWrappedService() |
void |
setWrappedService(KaleoTaskLocalService kaleoTaskLocalService) |
KaleoTask |
updateKaleoTask(KaleoTask kaleoTask)
Updates the kaleo task in the database or adds it if it does not yet exist.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetBasePersistencepublic KaleoTaskLocalServiceWrapper(KaleoTaskLocalService kaleoTaskLocalService)
public KaleoTask addKaleoTask(KaleoTask kaleoTask)
addKaleoTask in interface KaleoTaskLocalServicekaleoTask - the kaleo taskpublic KaleoTask addKaleoTask(long kaleoDefinitionId, long kaleoDefinitionVersionId, long kaleoNodeId, Task task, ServiceContext serviceContext) throws PortalException
addKaleoTask in interface KaleoTaskLocalServicePortalExceptionpublic KaleoTask createKaleoTask(long kaleoTaskId)
createKaleoTask in interface KaleoTaskLocalServicekaleoTaskId - the primary key for the new kaleo taskpublic PersistedModel createPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException
createPersistedModel in interface PersistedModelLocalServicecreatePersistedModel in interface KaleoTaskLocalServicePortalExceptionpublic void deleteCompanyKaleoTasks(long companyId)
deleteCompanyKaleoTasks in interface KaleoTaskLocalServicepublic void deleteKaleoDefinitionVersionKaleoTasks(long kaleoDefinitionVersionId)
deleteKaleoDefinitionVersionKaleoTasks in interface KaleoTaskLocalServicepublic KaleoTask deleteKaleoTask(KaleoTask kaleoTask)
deleteKaleoTask in interface KaleoTaskLocalServicekaleoTask - the kaleo taskpublic KaleoTask deleteKaleoTask(long kaleoTaskId) throws PortalException
deleteKaleoTask in interface KaleoTaskLocalServicekaleoTaskId - the primary key of the kaleo taskPortalException - if a kaleo task with the primary key could not be foundpublic PersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
deletePersistedModel in interface PersistedModelLocalServicedeletePersistedModel in interface KaleoTaskLocalServicePortalExceptionpublic <T> T dslQuery(DSLQuery dslQuery)
dslQuery in interface KaleoTaskLocalServicepublic DynamicQuery dynamicQuery()
dynamicQuery in interface KaleoTaskLocalServicepublic <T> java.util.List<T> dynamicQuery(DynamicQuery dynamicQuery)
dynamicQuery in interface KaleoTaskLocalServicedynamicQuery - the dynamic querypublic <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.portal.workflow.kaleo.model.impl.KaleoTaskModelImpl.
dynamicQuery in interface KaleoTaskLocalServicedynamicQuery - 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(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.portal.workflow.kaleo.model.impl.KaleoTaskModelImpl.
dynamicQuery in interface KaleoTaskLocalServicedynamicQuery - 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(DynamicQuery dynamicQuery)
dynamicQueryCount in interface KaleoTaskLocalServicedynamicQuery - the dynamic querypublic long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
dynamicQueryCount in interface KaleoTaskLocalServicedynamicQuery - the dynamic queryprojection - the projection to apply to the querypublic KaleoTask fetchKaleoTask(long kaleoTaskId)
fetchKaleoTask in interface KaleoTaskLocalServicepublic ActionableDynamicQuery getActionableDynamicQuery()
getActionableDynamicQuery in interface KaleoTaskLocalServicepublic IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
getIndexableActionableDynamicQuery in interface KaleoTaskLocalServicepublic KaleoTask getKaleoNodeKaleoTask(long kaleoNodeId) throws PortalException
getKaleoNodeKaleoTask in interface KaleoTaskLocalServicePortalExceptionpublic KaleoTask getKaleoTask(long kaleoTaskId) throws PortalException
getKaleoTask in interface KaleoTaskLocalServicekaleoTaskId - the primary key of the kaleo taskPortalException - if a kaleo task with the primary key could not be foundpublic java.util.List<KaleoTask> getKaleoTasks(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.portal.workflow.kaleo.model.impl.KaleoTaskModelImpl.
getKaleoTasks in interface KaleoTaskLocalServicestart - the lower bound of the range of kaleo tasksend - the upper bound of the range of kaleo tasks (not inclusive)public int getKaleoTasksCount()
getKaleoTasksCount in interface KaleoTaskLocalServicepublic java.lang.String getOSGiServiceIdentifier()
getOSGiServiceIdentifier in interface KaleoTaskLocalServicepublic PersistedModel getPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException
getPersistedModel in interface PersistedModelLocalServicegetPersistedModel in interface KaleoTaskLocalServicePortalExceptionpublic KaleoTask updateKaleoTask(KaleoTask kaleoTask)
updateKaleoTask in interface KaleoTaskLocalServicekaleoTask - the kaleo taskpublic KaleoTaskLocalService getWrappedService()
getWrappedService in interface ServiceWrapper<KaleoTaskLocalService>public void setWrappedService(KaleoTaskLocalService kaleoTaskLocalService)
setWrappedService in interface ServiceWrapper<KaleoTaskLocalService>