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.java.util.List<SuspendedJobEntity>findJobsByExecutionId(java.lang.String id)Returns allSuspendedJobEntityinstances related to onExecutionEntity.java.util.List<SuspendedJobEntity>findJobsByProcessInstanceId(java.lang.String id)Returns allSuspendedJobEntityinstances related to onExecutionEntity.java.util.List<Job>findJobsByQueryCriteria(SuspendedJobQueryImpl jobQuery, Page page)Executes aJobQueryImpland returns the matchingSuspendedJobEntityinstances.voidupdateJobTenantIdForDeployment(java.lang.String deploymentId, java.lang.String newTenantId)Changes the tenantId for all jobs related to a givenDeploymentEntity.
-
-
-
Method Detail
-
findJobsByExecutionId
java.util.List<SuspendedJobEntity> findJobsByExecutionId(java.lang.String id)
Returns allSuspendedJobEntityinstances related to onExecutionEntity.
-
findJobsByProcessInstanceId
java.util.List<SuspendedJobEntity> findJobsByProcessInstanceId(java.lang.String id)
Returns allSuspendedJobEntityinstances related to onExecutionEntity.
-
findJobsByQueryCriteria
java.util.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(java.lang.String deploymentId, java.lang.String newTenantId)Changes the tenantId for all jobs related to a givenDeploymentEntity.
-
-