Package org.springframework.batch.core.jsr

Examples of org.springframework.batch.core.jsr.JsrJobExecution


    if(jobExecution == null) {
      throw new NoSuchJobExecutionException("No execution was found for executionId " + executionId);
    }

    return new JsrJobExecution(jobExecution, jobParametersConverter);
  }
View Full Code Here


      throw new NoSuchJobInstanceException("Unable to find JobInstance " + jobInstance.getInstanceId());
    }

    List<JobExecution> results = new ArrayList<JobExecution>(batchExecutions.size());
    for (org.springframework.batch.core.JobExecution jobExecution : batchExecutions) {
      results.add(new JsrJobExecution(jobExecution, jobParametersConverter));
    }

    return results;
  }
View Full Code Here

TOP

Related Classes of org.springframework.batch.core.jsr.JsrJobExecution

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.