I have a field in my bean that I would like to be either Null, OR a date in the past. JSR-303 provides annotations for Null and Past, but if I apply both the it will never validate because it can't be both Null and Past. I would like to combine the validations in an OR relationship. I'm pretty sure I'll have to create my own validator implementation for that, but I'm hoping I'm missing something and one of you can show me how to easily combine the existing validators in an OR relationship.

link|improve this question

1  
Yay! Javabeans! Obfuscating your code since 1997. – Erick Robertson Nov 15 '10 at 20:09
feedback

1 Answer

up vote 6 down vote accepted

All of the default JSR-303 annotations allow Null through. (Except, obviously, NotNull!) Simply using @Past is implicitly "in the past, or null."

link|improve this answer
funny, I was just going to answer with that myself. Thanks for stating the obvious, apparently I needed it :) – digitaljoel Nov 15 '10 at 20:16
feedback

Your Answer

 
or
required, but never shown

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