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.html)

Has anyone managed to implement this somehow?
Ideally I would like for contributions to specify an ordering in the
multimap.

eg:
AppModule.java
   public static void contibuteAuthorizers(MultiMapConfiguration<String,
Authorizer> config) {
      config.add("topic1", "auth1", new Authorizer1());
      config.add("topic1", "auth2", new Authorizer2(), "before:auth1");
      config.add("topic2", "auth3", new Authorizer3());
      config.add("topic2", "auth4", new Authorizer4(), "before:auth3");
   }

--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/MultiMapConfiguration-tp5714003.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to