Uses of Class
org.springframework.batch.core.repository.JobRestartException

Packages that use JobRestartException
org.springframework.batch.core.job Specific implementations of job concerns. 
org.springframework.batch.core.job.flow   
org.springframework.batch.core.launch Interfaces and simple implementations of launch concerns. 
org.springframework.batch.core.launch.support Support classes for use in bootstrap and launch implementations or configurations. 
org.springframework.batch.core.repository Interfaces and generic implementations of repository concerns. 
org.springframework.batch.core.repository.support Specific implementations of repository concerns. 
org.springframework.batch.test   
 

Uses of JobRestartException in org.springframework.batch.core.job
 

Methods in org.springframework.batch.core.job that throw JobRestartException
protected  void SimpleJob.doExecute(JobExecution execution)
          Handler of steps sequentially as provided, checking each one for success before moving to the next.
protected  StepExecution AbstractJob.handleStep(Step step, JobExecution execution)
          Convenience method for subclasses to delegate the handling of a specific step in the context of the current JobExecution.
 

Uses of JobRestartException in org.springframework.batch.core.job.flow
 

Methods in org.springframework.batch.core.job.flow that throw JobRestartException
 String FlowExecutor.executeStep(Step step)
           
 

Uses of JobRestartException in org.springframework.batch.core.launch
 

Methods in org.springframework.batch.core.launch that throw JobRestartException
 Long JobOperator.restart(long executionId)
          Restart a failed or stopped JobExecution.
 JobExecution JobLauncher.run(Job job, JobParameters jobParameters)
          Start a job execution for the given Job and JobParameters .
 Long JobOperator.startNextInstance(String jobName)
          Launch the next in a sequence of JobInstance determined by the JobParametersIncrementer attached to the specified job.
 

Uses of JobRestartException in org.springframework.batch.core.launch.support
 

Methods in org.springframework.batch.core.launch.support that throw JobRestartException
 Long SimpleJobOperator.restart(long executionId)
           
 JobExecution SimpleJobLauncher.run(Job job, JobParameters jobParameters)
          Run the provided job with the given JobParameters.
 

Uses of JobRestartException in org.springframework.batch.core.repository
 

Methods in org.springframework.batch.core.repository that throw JobRestartException
 JobExecution JobRepository.createJobExecution(String jobName, JobParameters jobParameters)
           Create a JobExecution for a given Job and JobParameters.
 

Uses of JobRestartException in org.springframework.batch.core.repository.support
 

Methods in org.springframework.batch.core.repository.support that throw JobRestartException
 JobExecution SimpleJobRepository.createJobExecution(String jobName, JobParameters jobParameters)
           
 

Uses of JobRestartException in org.springframework.batch.test
 

Methods in org.springframework.batch.test that throw JobRestartException
 List<JobExecution> JobRepositoryTestUtils.createJobExecutions(int count)
          Use the JobRepository to create some JobExecution instances each with a single step execution.
 List<JobExecution> JobRepositoryTestUtils.createJobExecutions(String jobName, String[] stepNames, int count)
          Use the JobRepository to create some JobExecution instances each with the given job name and each having step executions with the given step names.
 



Copyright © 2009 SpringSource. All Rights Reserved.