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

Packages that use Step
org.springframework.batch.core Core domain context for Spring Batch covering jobs, steps, configuration and execution abstractions. 
org.springframework.batch.core.job Specific implementations of job concerns. 
org.springframework.batch.core.repository Interfaces and generic implementations of repository concerns. 
org.springframework.batch.core.repository.dao Specific implementations of dao concerns. 
org.springframework.batch.core.repository.support Specific implementations of repository concerns. 
org.springframework.batch.core.step Specific implementations of step concerns. 
org.springframework.batch.core.step.item Specific implementations of step concerns for item-oriented approach. 
org.springframework.batch.core.step.tasklet Interfaces and generic implementations of tasklet concerns. 
 

Uses of Step in org.springframework.batch.core
 

Methods in org.springframework.batch.core with parameters of type Step
 StepExecution JobExecution.createStepExecution(Step step)
          Register a step execution with the current job execution.
 

Constructors in org.springframework.batch.core with parameters of type Step
StepExecution(Step step, JobExecution jobExecution)
          Constructor that substitutes in null for the execution id
StepExecution(Step step, JobExecution jobExecution, Long id)
          Constructor with mandatory properties.
 

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

Methods in org.springframework.batch.core.job with parameters of type Step
 void AbstractJob.addStep(Step step)
           
 

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

Methods in org.springframework.batch.core.repository with parameters of type Step
 StepExecution JobRepository.getLastStepExecution(JobInstance jobInstance, Step step)
           
 int JobRepository.getStepExecutionCount(JobInstance jobInstance, Step step)
           
 

Uses of Step in org.springframework.batch.core.repository.dao
 

Methods in org.springframework.batch.core.repository.dao with parameters of type Step
 StepExecution StepExecutionDao.getStepExecution(JobExecution jobExecution, Step step)
           
 StepExecution MapStepExecutionDao.getStepExecution(JobExecution jobExecution, Step step)
           
 StepExecution JdbcStepExecutionDao.getStepExecution(JobExecution jobExecution, Step step)
           
 

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

Methods in org.springframework.batch.core.repository.support with parameters of type Step
 StepExecution SimpleJobRepository.getLastStepExecution(JobInstance jobInstance, Step step)
           
 int SimpleJobRepository.getStepExecutionCount(JobInstance jobInstance, Step step)
           
 

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.
 

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

Classes in org.springframework.batch.core.step.item that implement Step
 class ItemOrientedStep
          Simple implementation of executing the step as a set of chunks, each chunk surrounded by a transaction.
 

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

Classes in org.springframework.batch.core.step.tasklet that implement Step
 class TaskletStep
          A Step that executes a Tasklet directly.
 



Copyright © 2008 SpringSource. All Rights Reserved.