If you are looking to validate POJOs, you can have a look at the Oval framework http://oval.sourceforge.net/
JSR-303 (and its implementations) may also help if ur app is designed based on pojos or beans
Here is a sample custom validation in OVal:
Lets say you have to validate variables map in SomeValueClass and ensure the value of key 'greeting' is always present.
public class SomeValueClass {
@FormCollection
Map variables;
public static void main(String[] args) {
SomeValueClass svc1 = new SomeValueClass();
svc1.variables = new HashMap();
svc1.variables.put("greeting", "");
Validator validator = new Validator();
List<ConstraintViolation> violations = validator.validate(svc1);
System.out.println("svc1 violations.size() = " + violations.size());
}
The @FormCollection annotation on "Map variables;" is a custom validator and is as below:
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD, ElementType.PARAMETER, ElementType.METHOD})
@net.sf.oval.configuration.annotation.Constraint(checkWith = FormCollectionCheck.class)
public @interface FormCollection {
String message() default "Some errors in the form";
}
And the constraint check class will look like this:
public class FormCollectionCheck extends AbstractAnnotationCheck<FormCollection> {
public boolean isSatisfied(Object validatedObject, Object valueToValidate, OValContext context, Validator validator) {
Map vars = (Map) valueToValidate;
return !(vars.get("greeting")==null || ((String)vars.get("greeting")).length()<=0);
}
}
Hope that helps,
Cheers