org.javalite.validation.ImplicitConversionValidator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of activeweb Show documentation
Show all versions of activeweb Show documentation
Core functionality of the framework
package org.javalite.validation;
/**
* As the name implies, it is implicit, and used internally by ActiveWeb
* when converting request values into Java beans.
* Do not use this validator directly.
*
* @since 3.0 and 2.3-j8
*/
public final class ImplicitConversionValidator extends ValidatorAdapter {
public ImplicitConversionValidator(String message) {
setMessage(message);
}
@Override
public void validate(Validatable validatable) {
//do nothing.
}
}