You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sk...@apache.org on 2008/01/29 11:31:36 UTC

svn commit: r616239 - /myfaces/orchestra/trunk/core/src/main/resources/META-INF/spring-orchestra-init.xml

Author: skitching
Date: Tue Jan 29 02:31:35 2008
New Revision: 616239

URL: http://svn.apache.org/viewvc?rev=616239&view=rev
Log:
Use new access scope, not deprecated flash scope

Modified:
    myfaces/orchestra/trunk/core/src/main/resources/META-INF/spring-orchestra-init.xml

Modified: myfaces/orchestra/trunk/core/src/main/resources/META-INF/spring-orchestra-init.xml
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/core/src/main/resources/META-INF/spring-orchestra-init.xml?rev=616239&r1=616238&r2=616239&view=diff
==============================================================================
--- myfaces/orchestra/trunk/core/src/main/resources/META-INF/spring-orchestra-init.xml (original)
+++ myfaces/orchestra/trunk/core/src/main/resources/META-INF/spring-orchestra-init.xml Tue Jan 29 02:31:35 2008
@@ -26,21 +26,21 @@
 			http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">
 
 	<bean
-		name="org.apache.myfaces.orchestra.conversation.FlashScopeManager"
-		class="org.apache.myfaces.orchestra.conversation.FlashScopeManager"
+		name="org.apache.myfaces.orchestra.conversation.AccessScopeManager"
+		class="org.apache.myfaces.orchestra.conversation.AccessScopeManager"
 		scope="request">
 
 		<property
-			name="flashScopeManagerConfiguration"
-			ref="org.apache.myfaces.orchestra.conversation.FlashScopeManagerConfiguration" />
+			name="accessScopeManagerConfiguration"
+			ref="org.apache.myfaces.orchestra.conversation.AccessScopeManagerConfiguration" />
 
 	</bean>
 
-	<!-- provide an empty instanceo of the FlashScopeManagerConfiguration to make spring happy.
+	<!-- provide an empty instanceo of the AccessScopeManagerConfiguration to make spring happy.
 	Users have to override it in their own spring configuration to provide a real configuration -->
 	<bean
-		name="org.apache.myfaces.orchestra.conversation.FlashScopeManagerConfiguration"
-		class="org.apache.myfaces.orchestra.conversation.FlashScopeManagerConfiguration"
+		name="org.apache.myfaces.orchestra.conversation.AccessScopeManagerConfiguration"
+		class="org.apache.myfaces.orchestra.conversation.AccessScopeManagerConfiguration"
 		scope="singleton">
 
 	</bean>