Package org.springframework.batch.core
Interface JobParametersValidator
- All Known Implementing Classes:
CompositeJobParametersValidator,DefaultJobParametersValidator
public interface JobParametersValidator
Strategy interface for a
Job to use in validating its parameters for
an execution.- Author:
- Dave Syer, Mahmoud Ben Hassine
-
Method Summary
Modifier and TypeMethodDescriptionvoidvalidate(JobParameters parameters) Check the parameters meet whatever requirements are appropriate, and throw an exception if not.
-
Method Details
-
validate
Check the parameters meet whatever requirements are appropriate, and throw an exception if not.- Parameters:
parameters- someJobParameters(can benull)- Throws:
JobParametersInvalidException- if the parameters are invalid
-