| org.kuali.kfs.batch.Step
All known Subclasses: org.kuali.kfs.batch.AbstractStep,
Step | public interface Step (Code) | | |
execute | public boolean execute(String jobName) throws InterruptedException(Code) | | Perform this step of a batch job.
true if successful and continue the job, false if successful and stop the job throws: Throwable - if unsuccessful |
getName | public String getName()(Code) | | Return id of this step spring bean.
The name of this step. |
interrupt | public void interrupt()(Code) | | Call to attempt to interrupt a step in the middle of processing. Note that this only has an effect if the step in question
checks its interrupted status.
|
isInterrupted | public boolean isInterrupted()(Code) | | |
setInterrupted | public void setInterrupted(boolean interrupted)(Code) | | |
|
|