You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by gn...@apache.org on 2009/01/12 16:40:46 UTC

svn commit: r733794 - /servicemix/components/bindings/servicemix-ftp/trunk/src/main/resources/META-INF/spring/servicemix-ftp.xml

Author: gnodet
Date: Mon Jan 12 07:40:37 2009
New Revision: 733794

URL: http://svn.apache.org/viewvc?rev=733794&view=rev
Log:
SM-1763: upgrade to spring-osgi 1.2.0-m2

Modified:
    servicemix/components/bindings/servicemix-ftp/trunk/src/main/resources/META-INF/spring/servicemix-ftp.xml

Modified: servicemix/components/bindings/servicemix-ftp/trunk/src/main/resources/META-INF/spring/servicemix-ftp.xml
URL: http://svn.apache.org/viewvc/servicemix/components/bindings/servicemix-ftp/trunk/src/main/resources/META-INF/spring/servicemix-ftp.xml?rev=733794&r1=733793&r2=733794&view=diff
==============================================================================
--- servicemix/components/bindings/servicemix-ftp/trunk/src/main/resources/META-INF/spring/servicemix-ftp.xml (original)
+++ servicemix/components/bindings/servicemix-ftp/trunk/src/main/resources/META-INF/spring/servicemix-ftp.xml Mon Jan 12 07:40:37 2009
@@ -19,12 +19,15 @@
 -->
 <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+       xmlns:ctx="http://www.springframework.org/schema/context"
        xmlns:osgi="http://www.springframework.org/schema/osgi"
        xmlns:osgix="http://www.springframework.org/schema/osgi-compendium"
        xmlns:util="http://www.springframework.org/schema/util"
        xsi:schemaLocation="
   http://www.springframework.org/schema/beans
   http://www.springframework.org/schema/beans/spring-beans.xsd
+  http://www.springframework.org/schema/context
+  http://www.springframework.org/schema/context/spring-context.xsd
   http://www.springframework.org/schema/util
   http://www.springframework.org/schema/util/spring-util.xsd
   http://www.springframework.org/schema/osgi
@@ -63,12 +66,12 @@
         </osgi:service-properties>
     </osgi:service>
 
-    <osgix:property-placeholder persistent-id="servicemix-ftp">
-        <osgix:default-properties>
-            <prop key="threadPoolCorePoolSize">8</prop>
-            <prop key="threadPoolMaximumPoolSize">32</prop>
-            <prop key="threadPoolQueueSize">256</prop>
-        </osgix:default-properties>
-    </osgix:property-placeholder>
+    <osgix:cm-properties id="cmProps" persistent-id="servicemix-ftp">
+        <prop key="threadPoolCorePoolSize">8</prop>
+        <prop key="threadPoolMaximumPoolSize">32</prop>
+        <prop key="threadPoolQueueSize">256</prop>
+    </osgix:cm-properties>
 
+    <ctx:property-placeholder properties-ref="cmProps" />
+    
 </beans>