Re: MultiMapConfiguration

2012-06-21 Thread Lance Java
er1("topic2"), "before:auth3"); } public void buildAuthorizers(List authorizers) { MultiMap multimap = new HashMultiMap(); for (Authorizer auth : authorizers) { multimap.put(auth.getTopic(), auth); } return new AuthorizersImpl(multimap); } -- View this message in contex

MultiMapConfiguration

2012-06-21 Thread Lance Java
Hi, I'm aware that there is an OrderedConfiguration and a MappedConfiguration but I would like a MultiMapConfiguration where I can contribute to a Multimap (guava's implementation here http://guava-libraries.googlecode.com/svn/tags/release03/javadoc/com/google/common/collect/Multimap.