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 2007/10/05 15:10:11 UTC

svn commit: r582245 - /myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/CurrentConversationAdvice.java

Author: skitching
Date: Fri Oct  5 06:10:10 2007
New Revision: 582245

URL: http://svn.apache.org/viewvc?rev=582245&view=rev
Log:
Minor javadoc tweak: remove reference to Spring. Any AOC container can use this class.

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

Modified: myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/CurrentConversationAdvice.java
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/CurrentConversationAdvice.java?rev=582245&r1=582244&r2=582245&view=diff
==============================================================================
--- myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/CurrentConversationAdvice.java (original)
+++ myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/CurrentConversationAdvice.java Fri Oct  5 06:10:10 2007
@@ -32,13 +32,13 @@
  * </ul>
  * </p>
  * 
- * <p>A spring bean that is declared as belonging to a particular conversation is
- * always wrapped in a proxy object. When any method is called on that proxy,
- * the call is forwarded to the "invoke" method here. This class then ensures
- * that the "current conversation" is set to the conversation configured for
- * that target bean. The result is that the real bean can call
- * Conversation.getCurrentInstance() and always receives a reference to the
- * conversation object that has been configured for it.</p>
+ * <p>A bean that is declared as belonging to a particular conversation is
+ * always wrapped by the IOC system in a proxy object. When any method is
+ * called on that proxy, the call is forwarded to the "invoke" method here.
+ * This class then ensures that the "current conversation" is set to the
+ * conversation configured for that target bean. The result is that the real
+ * bean can call Conversation.getCurrentInstance() and always receives a
+ * reference to the conversation object that has been configured for it.</p>
  * 
  * <p>In addition, on return from the target bean method, this object
  * checks whether the conversation has been marked as invalid. If so (and