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/02/18 23:12:29 UTC

svn commit: r628887 - /myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/spring/AbstractSpringOrchestraScope.java

Author: skitching
Date: Mon Feb 18 14:12:27 2008
New Revision: 628887

URL: http://svn.apache.org/viewvc?rev=628887&view=rev
Log:
Add method to get current application context

Modified:
    myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/spring/AbstractSpringOrchestraScope.java

Modified: myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/spring/AbstractSpringOrchestraScope.java
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/spring/AbstractSpringOrchestraScope.java?rev=628887&r1=628886&r2=628887&view=diff
==============================================================================
--- myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/spring/AbstractSpringOrchestraScope.java (original)
+++ myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/spring/AbstractSpringOrchestraScope.java Mon Feb 18 14:12:27 2008
@@ -620,4 +620,12 @@
 		this.applicationContext = (ConfigurableApplicationContext) applicationContext;
 		defineBeanPostProcessors(this.applicationContext.getBeanFactory());
 	}
+
+	/**
+	 * @since 1.1
+	 */
+	protected ApplicationContext getApplicationContext()
+	{
+		return applicationContext;
+	}
 }