It might be good a simple method in Conversion Service to easily convert generic lists to some other target list. Like:

var List<MyTargetPojo> newItems = conversionService.convertList(items, MyTargetPojo.class);

Comment From: snicoll

Thanks for the suggestion but we'd rather not add overloads for collections in ConversionService.