You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-scm@portals.apache.org by dd...@apache.org on 2005/11/16 21:25:58 UTC

svn commit: r345101 - /portals/pluto/trunk/pluto-portal/src/main/webapp/WEB-INF/pluto-portal-driver-services-config.xml

Author: ddewolf
Date: Wed Nov 16 12:25:55 2005
New Revision: 345101

URL: http://svn.apache.org/viewcvs?rev=345101&view=rev
Log:
updating configuration to match refactoring in driver; now utilizing spring for container services as well as portal services

Modified:
    portals/pluto/trunk/pluto-portal/src/main/webapp/WEB-INF/pluto-portal-driver-services-config.xml

Modified: portals/pluto/trunk/pluto-portal/src/main/webapp/WEB-INF/pluto-portal-driver-services-config.xml
URL: http://svn.apache.org/viewcvs/portals/pluto/trunk/pluto-portal/src/main/webapp/WEB-INF/pluto-portal-driver-services-config.xml?rev=345101&r1=345100&r2=345101&view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal/src/main/webapp/WEB-INF/pluto-portal-driver-services-config.xml (original)
+++ portals/pluto/trunk/pluto-portal/src/main/webapp/WEB-INF/pluto-portal-driver-services-config.xml Wed Nov 16 12:25:55 2005
@@ -9,6 +9,10 @@
       <constructor-arg><ref bean="PropertyConfigService"/></constructor-arg>
       <constructor-arg><ref bean="PortletRegistryService"/></constructor-arg>
       <constructor-arg><ref bean="RenderConfigService"/></constructor-arg>
+
+      <!-- Container Services -->
+      <constructor-arg><ref bean="PortalCallbackService"/></constructor-arg>
+      <constructor-arg><ref bean="PortletPreferencesService"/></constructor-arg>
     </bean>
 
     <bean name="PropertyConfigService"
@@ -23,4 +27,16 @@
           class="org.apache.pluto.driver.services.impl.resource.ResourceServicesImpl"
           singleton="true">
     </bean>
+
+    <!-- Container Services -->
+    <bean name="PortalCallbackService"
+          class="org.apache.pluto.driver.services.container.PortalCallbackServiceImpl"
+          singleton="true">
+    </bean>
+
+    <bean name="PortletPreferencesService"
+          class="org.apache.pluto.driver.services.container.PortletPreferencesServiceImpl"
+          singleton="true">
+    </bean>
+
 </beans>