Examples of JobExecution


Examples of org.springframework.batch.core.JobExecution

   * @throws Exception if there is a problem
   * @see TestExecutionListener#prepareTestInstance(TestContext)
   */
  @Override
  public void prepareTestInstance(TestContext testContext) throws Exception {
    JobExecution jobExecution = getJobExecution(testContext);
    if (jobExecution != null) {
      testContext.setAttribute(JOB_EXECUTION, jobExecution);
    }
  }
View Full Code Here

Examples of org.springframework.batch.core.JobExecution

   * @see TestExecutionListener#beforeTestMethod(TestContext)
   */
  @Override
  public void beforeTestMethod(org.springframework.test.context.TestContext testContext) throws Exception {
    if (testContext.hasAttribute(JOB_EXECUTION)) {
      JobExecution jobExecution = (JobExecution) testContext.getAttribute(JOB_EXECUTION);
      JobSynchronizationManager.register(jobExecution);
    }

  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.