Author: ffang
Date: Tue Sep 21 03:02:55 2010
New Revision: 999191

URL: http://svn.apache.org/viewvc?rev=999191&view=rev
Log:
[SMXCOMP-802]enable inject CxfBcConfiguration through blueprint

Modified:
    
servicemix/components/bindings/servicemix-cxf-bc/trunk/src/main/resources/OSGI-INF/blueprint/servicemix-cxf-bc.xml

Modified: 
servicemix/components/bindings/servicemix-cxf-bc/trunk/src/main/resources/OSGI-INF/blueprint/servicemix-cxf-bc.xml
URL: 
http://svn.apache.org/viewvc/servicemix/components/bindings/servicemix-cxf-bc/trunk/src/main/resources/OSGI-INF/blueprint/servicemix-cxf-bc.xml?rev=999191&r1=999190&r2=999191&view=diff
==============================================================================
--- 
servicemix/components/bindings/servicemix-cxf-bc/trunk/src/main/resources/OSGI-INF/blueprint/servicemix-cxf-bc.xml
 (original)
+++ 
servicemix/components/bindings/servicemix-cxf-bc/trunk/src/main/resources/OSGI-INF/blueprint/servicemix-cxf-bc.xml
 Tue Sep 21 03:02:55 2010
@@ -22,9 +22,14 @@
            
xmlns:ext="http://aries.apache.org/blueprint/xmlns/blueprint-ext/v1.0.0";>
 
     <bean id="servicemix-cxfbc" 
class="org.apache.servicemix.cxfbc.CxfBcComponent">
+        <property name="configuration" ref="servicemix-cxfbc-configuration" />
         <property name="authenticationService" ref="authenticationService" />
         <property name="executorFactory" ref="executorFactory" />
     </bean>
+   
+    <bean id="servicemix-cxfbc-configuration" 
class="org.apache.servicemix.cxfbc.CxfBcConfiguration">
+        <property name="busCfg" value="${busCfg}" />
+    </bean>
 
     <bean id="executorFactory" 
class="org.apache.servicemix.executors.impl.ExecutorFactoryImpl">
         <property name="defaultConfig">
@@ -72,7 +77,8 @@
             <cm:property name="threadPoolCorePoolSize" value="8"/>
             <cm:property name="threadPoolMaximumPoolSize" value="32"/>
             <cm:property name="threadPoolQueueSize" value="256"/>
-           </cm:default-properties>
+            <cm:property name="busCfg" value=""/>
+        </cm:default-properties>
     </cm:property-placeholder>
     
 </blueprint>


Reply via email to