public void stopJobExecution(@PathVariable("executionId") long jobExecutionId) {
try {
jobService.stop(jobExecutionId);
}
catch (org.springframework.batch.core.launch.JobExecutionNotRunningException e) {
throw new JobExecutionNotRunningException(jobExecutionId);
}
catch (org.springframework.batch.core.launch.NoSuchJobExecutionException e) {
throw new NoSuchJobExecutionException(jobExecutionId);
}
}