Java org.springframework.batch.core.step AbstractStep fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.batch.core.step AbstractStep fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.batch.core.step AbstractStep.

The text is from its open source code.

Subclass

org.springframework.batch.core.step.AbstractStep has subclasses.
Click this link to see all its subclasses.

Method

voidexecute(StepExecution stepExecution)
Template method for step execution logic - calls abstract methods for resource initialization ( #open(ExecutionContext) ), execution logic ( #doExecute(StepExecution) ) and resource closing ( #close(ExecutionContext) ).
StringgetName()
voidregisterStepExecutionListener(StepExecutionListener listener)
Register a step listener for callbacks at the appropriate stages in a step execution.
voidsetAllowStartIfComplete(boolean allowStartIfComplete)
Public setter for flag that determines whether the step should start again if it is already complete.
voidsetJobRepository(JobRepository jobRepository)
Public setter for JobRepository .
voidsetName(String name)
Set the name property.
voidsetStartLimit(int startLimit)
Public setter for the startLimit.
voidsetStepExecutionListeners(StepExecutionListener[] listeners)
Register each of the objects as listeners.