updated to final versions of JSR-330 and JSR-303 APIs
This commit is contained in:
@@ -57,7 +57,7 @@ import org.springframework.util.CollectionUtils;
|
||||
* @see javax.validation.ValidatorFactory#getValidator()
|
||||
*/
|
||||
public class LocalValidatorFactoryBean extends SpringValidatorAdapter
|
||||
implements ValidatorFactory, Validator, ApplicationContextAware, InitializingBean {
|
||||
implements ValidatorFactory, ApplicationContextAware, InitializingBean {
|
||||
|
||||
private Class providerClass;
|
||||
|
||||
@@ -208,4 +208,12 @@ public class LocalValidatorFactoryBean extends SpringValidatorAdapter
|
||||
return this.validatorFactory.getMessageInterpolator();
|
||||
}
|
||||
|
||||
public TraversableResolver getTraversableResolver() {
|
||||
return this.validatorFactory.getTraversableResolver();
|
||||
}
|
||||
|
||||
public ConstraintValidatorFactory getConstraintValidatorFactory() {
|
||||
return this.validatorFactory.getConstraintValidatorFactory();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user