Package org.springframework.batch.core.jsr.job

Examples of org.springframework.batch.core.jsr.job.JsrStepHandler


   */
  @Override
  protected void doExecute(final JobExecution execution) throws JobExecutionException {
    try {
      JobFlowExecutor executor = new JsrFlowExecutor(getJobRepository(),
          new JsrStepHandler(getJobRepository(), jobExplorer), execution);

      State startState = ((JsrFlow)flow).getStartState();

      validateFirstStep(startState);

View Full Code Here

TOP

Related Classes of org.springframework.batch.core.jsr.job.JsrStepHandler

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.