-
Feature Request
-
Resolution: Done
-
Major
-
7.1.1.Final
object-factory binding should allow us to specify parameters that should be propagated to the ObjectFactory.
For example, Tomcat allows us to create URLResourceFactory that accepts parameters defined as attributes of Resource element in XML.
The configuration would loook like this:
{{
<subsystem xmlns="urn:jboss:domain:naming:1.1">
<bindings>
<object-factory name="java:global/url/google" module="net.croz.jboss.jndi.url" class="net.croz.jboss.jndi.url.URLResourceFactory" url="http://www.google.com"/>
</bindings>
</subsystem>
}}
I have implemented proof of a concept.