play.data.validation.MinSizeCheck Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of framework Show documentation
Show all versions of framework Show documentation
RePlay is a fork of the Play1 framework, created by Codeborne.
package play.data.validation;
import net.sf.oval.Validator;
import net.sf.oval.configuration.annotation.AbstractAnnotationCheck;
import net.sf.oval.context.OValContext;
import java.util.HashMap;
import java.util.Map;
@SuppressWarnings("serial")
public class MinSizeCheck extends AbstractAnnotationCheck {
static final String mes = "validation.minSize";
int minSize;
@Override
public void configure(MinSize annotation) {
this.minSize = annotation.value();
setMessage(annotation.message());
}
@Override
public boolean isSatisfied(Object validatedObject, Object value, OValContext context, Validator validator) {
requireMessageVariablesRecreation();
if (value == null || value.toString().length() == 0) {
return true;
}
return value.toString().length() >= minSize;
}
@Override
public Map createMessageVariables() {
Map messageVariables = new HashMap<>();
messageVariables.put("minSize", Integer.toString(minSize));
return messageVariables;
}
}