|
Follow on from the discussion on
HHH-7572
. There idea here would be to develop an API similar to the one developed for
HHH-7572
for initializing multiple collection references at one shot.
Still waiting on the user to respond in terms of details, but the initial API I proposed was:
public interface CollectionInitializerAccess {
void initialize(Map... maps);
void initialize(Collection<Map> maps);
void initialize(Collection... collections);
void initialize(Collection<Collection> collections);
}
Tentatively scheduled for 5.1 pending feedback.
|