|
The problem is the implementation of InputComponentValueUnwrapper#getValidatedValueType().
You just return the given wrapper type (which e.g. could be UIInput<String>) but you need to return the declared type of the wrapped value (which would be String in this case). This can be done e.g. using ClassMate, as shown in this example.
|