I have a Client object.
class Client{
String firstName
String lastName
String middleName
}
Then I have a form where mother cannot be equal to father. Which validator would be more proper for comparing the clients? Is there even a difference? I've tried both and they work, though I'm not too sure if it may just be a coincidence. I could be wrong too. How is comparing done for two objects? Any advice?
val.id == obj.father.id or val == obj.father
class Form{
Client mother
Client father
static constraints = {
mother (nullable:true, validator: { val, obj ->
if(mother equals father){
return ["invalid.motherCannotBeEqualFather.label"]
}
})
}
}