"alesj" wrote : Aha, just remembered one ... one sec ;-)

XML:

  | <bean name="prop1" class="org.acme.LDAPPropProvider">
  | <constructor>
  |          <parameter replace="false">${somekey:somedefault} </parameter>     
             
  | </constructor>
  | </bean>
  | 
  |    <bean name="NeedsOurSystemProperty" class="org.acme.PropWanna">
  |       <property name="someProp"><inject bean="prop1" 
property="provideProperty">/</property>
  |    </bean>
  | 

Where mock is now:

  | public class LDAPPropProvider
  |    {
  |       private String propKey;
  | 
  |       public LDAPPropProvider(String prop)
  |        {
  |            this.propKey = prop;
  |        }
  | 
  |       public String getProvideProperty()
  |       {
  |          return LDAP.lookup(propKey);
  |       }
  |    }
  | 
  |    public class PropWanna
  |    {
  |       public void setSomeProp(String prop)
  |       {
  |          ...
  |       }
  |    }
  | 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065805#4065805

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065805
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to