George Gastaldi commented on an issue
Hibernate Validator / New Feature HV-819
Add an API/SPI which allows to make the process of value retrieval customizable
I have an object like:
{code}
UIInput<String> name
{code}

The value is retrieved by calling {{String value = name.getValue();}}, however, my intention is to use the BV annotations:

{code}
@Size(min=3, max=10)
UIInput<String> name
{code}

The problem is that an {{javax.validation.UnexpectedTypeExceptionHV000030: No validator could be found f...