2011-09-15 00:35:36 EDT
How can I convert a Map A { "key1"= "one" ; "key2"="two"} to Map B{"key1"="red", "key3"="three"}
I want a one way mapping from MapA --> Map B so that all keys in A that found in B are replaced so that the result is
Map B{ "key1"="one", "key2"="two", "key3"="three"}
Is this an existent feature in dozer