Hi.
I would like to know if is possible to access the object instance of the bean that contains the value attribute you are validating.
Example:
Code:
class Issue {
private Date initDate;
private Date endDate;
...
}
I whant to do a validator that checks that 'endDate' is after 'initDate', so in the validator of 'endDate' I need access the 'Issue' instance.
Is this possible?
How?
(I see in the source code that validator framework know the object instance, but I don't know if I can access to it from my validator class)
Thanks a lot
Code: