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

Method Summary
 void validate(JobParameters parameters)
          Check the parameters meet whatever requirements are appropriate, and throw an exception if not.
 

Method Detail

validate

void validate(JobParameters parameters)
              throws JobParametersInvalidException
Check the parameters meet whatever requirements are appropriate, and throw an exception if not.

Parameters:
parameters - some JobParameters
Throws:
JobParametersInvalidException - if the parameters are invalid


Copyright © 2013 SpringSource. All Rights Reserved.