Interface JobParametersExtractor

All Known Implementing Classes:
DefaultJobParametersExtractor
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface JobParametersExtractor
Strategy interface for translating a StepExecution into JobParameters.
Author:
Dave Syer, Taeik Lim
  • Method Summary

    Modifier and Type
    Method
    Description
    getJobParameters(Job job, StepExecution stepExecution)
    Extract job parameters from the step execution, for example from the execution context or other properties.
  • Method Details