Package org.springframework.batch.admin.service

Examples of org.springframework.batch.admin.service.NoSuchStepExecutionException


    when(jobService.getStepExecution(2L, 1L)).thenReturn(step1);
    when(jobService.getStepExecution(5555L, 1L)).thenThrow(
        new NoSuchJobExecutionException("No JobExecution with id=5555L"));
    when(jobService.getStepExecution(2L, 5555L)).thenThrow(
        new NoSuchStepExecutionException("No StepExecution with id=5555L"));
    when(jobService.countStepExecutionsForStep(job1.getName(), step1.getStepName())).thenReturn(1);
    when(jobService.listStepExecutionsForStep(job1.getName(), step1.getStepName(), 0, 1000)).thenReturn(
        stepExecutions2);

  }
View Full Code Here

TOP

Related Classes of org.springframework.batch.admin.service.NoSuchStepExecutionException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.