Interface JobEntityManager
- All Superinterfaces:
EntityManager<JobEntity>, JobInfoEntityManager<JobEntity>
- All Known Implementing Classes:
JobEntityManagerImpl
EntityManager responsible for the JobEntity class.- Author:
- Joram Barrez
-
Method Summary
Modifier and TypeMethodDescriptionvoiddeleteJobsByExecutionId(String executionId) findJobByCorrelationId(String correlationId) Find the job with the given correlation idlongfindJobCountByQueryCriteria(JobQueryImpl jobQuery) Same asfindJobsByQueryCriteria(JobQueryImpl), but only returns a count and not the instances itself.findJobsByQueryCriteria(JobQueryImpl jobQuery) Executes aJobQueryImpland returns the matchingJobEntityinstances.booleaninsertJobEntity(JobEntity jobEntity) Insert theJobEntity, similar to insert(JobEntity), but returns a boolean in case the insert did not go through.
-
Method Details
-
insertJobEntity
-
findJobByCorrelationId
-
findJobsByQueryCriteria
Executes aJobQueryImpland returns the matchingJobEntityinstances. -
findJobCountByQueryCriteria
Same asfindJobsByQueryCriteria(JobQueryImpl), but only returns a count and not the instances itself. -
deleteJobsByExecutionId
-