Uses of Interface
org.springframework.batch.core.Step

Packages that use Step
org.springframework.batch.core.job Specific implementations of job concerns. 
org.springframework.batch.core.job.flow   
org.springframework.batch.core.job.flow.support.state   
org.springframework.batch.core.partition.support   
org.springframework.batch.core.scope.context   
org.springframework.batch.core.step Specific implementations of step concerns. 
org.springframework.batch.core.step.tasklet Interfaces and generic implementations of tasklet concerns. 
org.springframework.batch.test   
 

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

Methods in org.springframework.batch.core.job that return Step
abstract  Step AbstractJob.getStep(String stepName)
          Retrieve the step with the given name.
 Step SimpleJob.getStep(String stepName)
           
 

Methods in org.springframework.batch.core.job with parameters of type Step
 void SimpleJob.addStep(Step step)
          Convenience method for adding a single step to the job.
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.
 

Method parameters in org.springframework.batch.core.job with type arguments of type Step
 void SimpleJob.setSteps(List<Step> steps)
          Public setter for the steps in this job.
 

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

Methods in org.springframework.batch.core.job.flow that return Step
 Step FlowJob.getStep(String stepName)
          Retrieve the step with the given name.
 

Methods in org.springframework.batch.core.job.flow with parameters of type Step
 String FlowExecutor.executeStep(Step step)
           
 

Uses of Step in org.springframework.batch.core.job.flow.support.state
 

Methods in org.springframework.batch.core.job.flow.support.state that return Step
 Step StepState.getStep()
           
 

Constructors in org.springframework.batch.core.job.flow.support.state with parameters of type Step
StepState(Step step)
           
StepState(String name, Step step)
           
 

Uses of Step in org.springframework.batch.core.partition.support
 

Classes in org.springframework.batch.core.partition.support that implement Step
 class PartitionStep
          Implementation of Step which partitions the execution and spreads the load using a PartitionHandler.
 

Methods in org.springframework.batch.core.partition.support with parameters of type Step
 void TaskExecutorPartitionHandler.setStep(Step step)
          Setter for the Step that will be used to execute the partitioned StepExecution.
 

Constructors in org.springframework.batch.core.partition.support with parameters of type Step
SimpleStepExecutionSplitter(JobRepository jobRepository, Step step)
           
SimpleStepExecutionSplitter(JobRepository jobRepository, Step step, Partitioner partitioner)
          Construct a SimpleStepExecutionSplitter from its mandatory properties.
 

Uses of Step in org.springframework.batch.core.scope.context
 

Methods in org.springframework.batch.core.scope.context with parameters of type Step
 void StepScopeManager.execute(Step step, StepExecution stepExecution)
           
 

Uses of Step in org.springframework.batch.core.step
 

Classes in org.springframework.batch.core.step that implement Step
 class AbstractStep
          A Step implementation that provides common behavior to subclasses, including registering and calling listeners.
 

Methods in org.springframework.batch.core.step that return Step
 Step StepHolder.getStep()
           
 Step StepLocator.getStep(String stepName)
           
 

Uses of Step in org.springframework.batch.core.step.tasklet
 

Classes in org.springframework.batch.core.step.tasklet that implement Step
 class TaskletStep
          Simple implementation of executing the step as a call to a Tasklet, possibly repeated, and each call surrounded by a transaction.
 

Uses of Step in org.springframework.batch.test
 

Methods in org.springframework.batch.test with parameters of type Step
 JobExecution StepRunner.launchStep(Step step)
          Launch just the specified step as its own job.
 JobExecution StepRunner.launchStep(Step step, ExecutionContext jobExecutionContext)
          Launch just the specified step as its own job.
 JobExecution StepRunner.launchStep(Step step, JobParameters jobParameters)
          Launch just the specified step as its own job.
 JobExecution StepRunner.launchStep(Step step, JobParameters jobParameters, ExecutionContext jobExecutionContext)
          Launch just the specified step as its own job.
 



Copyright © 2009 SpringSource. All Rights Reserved.