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.