org.springframework.batch.item.validator
Class SpringValidator<T>

java.lang.Object
  extended by org.springframework.batch.item.validator.SpringValidator<T>
All Implemented Interfaces:
Validator<T>, InitializingBean

public class SpringValidator<T>
extends Object
implements Validator<T>, InitializingBean

Adapts the Validator interface to Validator.

Author:
Tomas Slanina, Robert Kasanicky

Constructor Summary
SpringValidator()
           
 
Method Summary
 void afterPropertiesSet()
           
 void setValidator(Validator validator)
           
 void validate(T item)
          Method used to validate if the value is valid.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SpringValidator

public SpringValidator()
Method Detail

validate

public void validate(T item)
              throws ValidationException
Description copied from interface: Validator
Method used to validate if the value is valid.

Specified by:
validate in interface Validator<T>
Parameters:
item - object to be validated
Throws:
ValidationException - if value is not valid.
See Also:
Validator.validate(Object)

setValidator

public void setValidator(Validator validator)

afterPropertiesSet

public void afterPropertiesSet()
                        throws Exception
Specified by:
afterPropertiesSet in interface InitializingBean
Throws:
Exception


Copyright © 2013 SpringSource. All Rights Reserved.