1 package org.springframework.batch.core.step;
2
3 import org.springframework.batch.core.Step;
4
5 /**
6 * Interface for holders of a {@link Step} as a convenience for callers who need
7 * access to the underlying instance.
8 *
9 * @author Dave Syer
10 * @since 2.0
11 */
12 public interface StepHolder {
13
14 Step getStep();
15
16 }