the PersonNameValidator has a public (non Validator interface method)
PersonNameValidator.validatePersonName
which does the validation and is called internally in the same class by the implementation of Spring’s Validator interface method validate.
I see it being used in the legacyui
I am pretty sure this usage can be replaced with a call to the Validator interface method.
If that is the case would you be in favor of deprecating the PersonNameValidator.validatePersonName ?
This is not of priority of course, just seems like it would be good to clean this up one day