|
Thanks Hardy, I thought as much that it was designed recursively. My apologies for tagging it as a bug.
I am indeed using my own custom constraint. It's quite a simple one, just checks if a certain value is contained in a String:
if (value == null) { return true; }
else { return value.contains(string); }
I also noticed your response on stackoverflow. I think my own custom MessageInterpolator here will be overkill so I'll just escape the string for now (although it seems kind of hacky...)
Thanks.
|