Examples of NoSuchStepExecutionException


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

Examples of org.springframework.xd.dirt.job.NoSuchStepExecutionException

      StepExecution stepExecution = jobService.getStepExecution(jobExecutionId, stepExecutionId);
      return this.stepExecutionInfoResourceAssembler.toResource(new StepExecutionInfo(stepExecution,
          this.timeZone));
    }
    catch (org.springframework.batch.admin.service.NoSuchStepExecutionException e) {
      throw new NoSuchStepExecutionException(stepExecutionId);
    }
    catch (org.springframework.batch.core.launch.NoSuchJobExecutionException e) {
      throw new NoSuchJobExecutionException(jobExecutionId);
    }
  }
View Full Code Here

Examples of org.springframework.xd.dirt.job.NoSuchStepExecutionException

      StepExecutionHistory stepExecutionHistory = computeHistory(jobName, stepName);
      return progressInfoResourceAssembler.toResource(new StepExecutionProgressInfo(stepExecution,
          stepExecutionHistory));
    }
    catch (org.springframework.batch.admin.service.NoSuchStepExecutionException e) {
      throw new NoSuchStepExecutionException(stepExecutionId);
    }
    catch (org.springframework.batch.core.launch.NoSuchJobExecutionException e) {
      throw new NoSuchJobExecutionException(jobExecutionId);
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.