org.springframework.batch.item.validator
Class SpringValidator

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

public class SpringValidator
extends Object
implements Validator, 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(Object 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(Object item)
              throws ValidationException
Description copied from interface: Validator
Method used to validate if the value is valid.

Specified by:
validate in interface Validator
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 © 2008 SpringSource. All Rights Reserved.