Hi, what was the reason for choosing Set<> not Map<> for the AciService.executeAction?
Its easy to produce a Set, by Stream() for example, but Sets are horribly ugly to work with. To do simple 'find' one has to do a plain old 'for' and look thru the whole collection by hand. You can convert the Set to Array and then do the search, if so, what was the reason for using Set in the first place?