Interface SuspendedJobEntityManager
-
- All Superinterfaces:
EntityManager<SuspendedJobEntity>
- All Known Implementing Classes:
SuspendedJobEntityManagerImpl
@Internal public interface SuspendedJobEntityManager extends EntityManager<SuspendedJobEntity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longfindJobCountByQueryCriteria(SuspendedJobQueryImpl jobQuery)Same asfindJobsByQueryCriteria(SuspendedJobQueryImpl, Page), but only returns a count and not the instances itself.List<SuspendedJobEntity>findJobsByExecutionId(String id)Returns allSuspendedJobEntityinstances related to onExecutionEntity.List<SuspendedJobEntity>findJobsByProcessInstanceId(String id)Returns allSuspendedJobEntityinstances related to onExecutionEntity.List<Job>findJobsByQueryCriteria(SuspendedJobQueryImpl jobQuery, Page page)Executes aJobQueryImpland returns the matchingSuspendedJobEntityinstances.voidupdateJobTenantIdForDeployment(String deploymentId, String newTenantId)Changes the tenantId for all jobs related to a givenDeploymentEntity.
-
-
-
Method Detail
-
findJobsByExecutionId
List<SuspendedJobEntity> findJobsByExecutionId(String id)
Returns allSuspendedJobEntityinstances related to onExecutionEntity.
-
findJobsByProcessInstanceId
List<SuspendedJobEntity> findJobsByProcessInstanceId(String id)
Returns allSuspendedJobEntityinstances related to onExecutionEntity.
-
findJobsByQueryCriteria
List<Job> findJobsByQueryCriteria(SuspendedJobQueryImpl jobQuery, Page page)
Executes aJobQueryImpland returns the matchingSuspendedJobEntityinstances.
-
findJobCountByQueryCriteria
long findJobCountByQueryCriteria(SuspendedJobQueryImpl jobQuery)
Same asfindJobsByQueryCriteria(SuspendedJobQueryImpl, Page), but only returns a count and not the instances itself.
-
updateJobTenantIdForDeployment
void updateJobTenantIdForDeployment(String deploymentId, String newTenantId)
Changes the tenantId for all jobs related to a givenDeploymentEntity.
-
-