osiam / connector4java

Native Java API to connect to the REST based OSIAM services
MIT License
8 stars 17 forks source link

Fix immutability of `Extension` #212

Closed tkrille closed 8 years ago

tkrille commented 8 years ago

Because a Map can be mutable, one could change the extensions of a underlying User object, by using the copy-of builder. Make defensive copies everywhere to fix this issue. The same change has been done to all multi-valued attributes of Users and Groups too.

dacrome commented 8 years ago

Thank you!