
play.data.validation.MaxSizeCheck 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 MaxSizeCheck extends AbstractAnnotationCheck {
static final String mes = "validation.maxSize";
int maxSize;
@Override
public void configure(MaxSize annotation) {
this.maxSize = 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() <= maxSize;
}
@Override
public Map createMessageVariables() {
Map messageVariables = new HashMap<>();
messageVariables.put("maxSize", Integer.toString(maxSize));
return messageVariables;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy