Interface SuspendedJobEntityManager
-
- All Superinterfaces:
EntityManager<SuspendedJobEntity>
- All Known Implementing Classes:
SuspendedJobEntityManagerImpl
public interface SuspendedJobEntityManager extends EntityManager<SuspendedJobEntity>
- Author:
- Tijs Rademakers
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SuspendedJobEntityfindJobByCorrelationId(String correlationId)Find the suspended job with the given correlation id.longfindJobCountByQueryCriteria(SuspendedJobQueryImpl jobQuery)Same asfindJobsByQueryCriteria(SuspendedJobQueryImpl), but only returns a count and not the instances itself.List<SuspendedJobEntity>findJobsByExecutionId(String id)Returns allSuspendedJobEntityinstances related to an execution id.List<SuspendedJobEntity>findJobsByProcessInstanceId(String id)Returns allSuspendedJobEntityinstances related to an execution id.List<Job>findJobsByQueryCriteria(SuspendedJobQueryImpl jobQuery)Executes aJobQueryImpland returns the matchingSuspendedJobEntityinstances.voidupdateJobTenantIdForDeployment(String deploymentId, String newTenantId)Changes the tenantId for all jobs related to a given deployment id.
-
-
-
Method Detail
-
findJobByCorrelationId
SuspendedJobEntity findJobByCorrelationId(String correlationId)
Find the suspended job with the given correlation id.
-
findJobsByExecutionId
List<SuspendedJobEntity> findJobsByExecutionId(String id)
Returns allSuspendedJobEntityinstances related to an execution id.
-
findJobsByProcessInstanceId
List<SuspendedJobEntity> findJobsByProcessInstanceId(String id)
Returns allSuspendedJobEntityinstances related to an execution id.
-
findJobsByQueryCriteria
List<Job> findJobsByQueryCriteria(SuspendedJobQueryImpl jobQuery)
Executes aJobQueryImpland returns the matchingSuspendedJobEntityinstances.
-
findJobCountByQueryCriteria
long findJobCountByQueryCriteria(SuspendedJobQueryImpl jobQuery)
Same asfindJobsByQueryCriteria(SuspendedJobQueryImpl), but only returns a count and not the instances itself.
-
-