Say I have the following simple java bean:
class MyBean {
private Date startDate;
private Date endDate;
//setter, getters etc...
}
Is there a mechanism in JSR 303 to create a custom validator that validates the constraint that startDate must be before endDate?
It seems to me to be a common use case, yet I cannot find any examples of this kind of multiple property relationsship constraint.