.findNextTimerJobsToExecute(new Page(0, maxJobsPerAcquisition));
for (JobEntity job: jobs) {
if (job != null && !acquiredJobs.contains(job.getId())) {
lockJob(commandContext, job, lockOwner, lockTimeInMillis);
acquiredJobs.addJob(job);
}
}
return acquiredJobs;
}