Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there an elegant way to validate a POJO parameter with another parameter from the same POJO with PlayFramework ? I'm searching a solution which keep the Play error mechanism.

Exemple :

@Entity
public class Page extends Model {

    @Required
    @Min(0)
    public Integer minWidth; 

    @Required
    @Min(0)
    public Integer maxWidth; 
}

I need to check that minWidth < maxWidth.

share|improve this question

1 Answer

up vote 5 down vote accepted

You need to write a custom validator and use the @CheckWith annotation.

You could also write a custom annotation (docs on the same page as above), but it's more complicated.

share|improve this answer
I read this in the documentation but I the validator or the annotation is applicable to one parameter only. How can I check it with another value from the same object ? I can't pass a dynamic value in the annotation parameter for example. – Zofren Nov 10 '11 at 10:31
The isSatisfied method defined in the Check abstract class (which you extend when you write your custom validator) takes two parameters, the object under test (in your case - Model) and the field under test (let's say the first one - minWidth). Inside the body of your method you then compare minWidth to model.maxWidth.. – Derek Troy-West Nov 10 '11 at 16:21
Ok i see. Thank you for this solution ! – Zofren Nov 14 '11 at 14:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.