CORDA-1229 - Setter serialization fails with lists

Looks like the super / sub type inference of setter param vs
getter param is the wrong way around. Also, Setter Type should
be the generic type, not just the type

the property must be a supertype of the setter parameter

the getter must be a supertype of the setter parameter
This commit is contained in:
Katelyn Baker
2018-04-11 18:32:23 +01:00
committed by Kat Baker
parent 72bd530b11
commit f19bcea82f
4 changed files with 41 additions and 4 deletions

View File

@ -7,6 +7,9 @@ release, see :doc:`upgrade-notes`.
Unreleased
==========
* Fix CORDA-1229. Setter based serialization was broken with generic types when the property was stored
as the interface type, List for example.
* java.security.cert.CRLReason added to the default Whitelist.
* java.security.cert.X509CRL serialization support added.