Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
4.0.B2, 4.1.M1
-
None
Description
Real world problem: we have class Money that extends BigDecimal and ValueObjectType that maps Money.class to BigDecimal.class.
But still BigDecimalType is used for attributes of type Money.
The reason for this is that every registration of ExtendedType also creates factory that maps all subclasses to that type. I.e. in our case this factory returns BigDecimalType before we can get registered ValueObjectType.
After some thoughts this subclass usage is a faulty behavior, as we can't assume anything about compatibility of this two classes. E.g. in our case there is no chance that we can interchange Money and BigDecimal. Moreover since 4.1 this behavior leads to immediate ClassCastException when trying to write such property into an object.