[weld-commits] Weld SVN: r5000 - api/trunk/cdi/src/main/java/javax/enterprise/context.

weld-commits at lists.jboss.org weld-commits at lists.jboss.org
Thu Nov 12 15:20:15 EST 2009


Author: gavin.king at jboss.com
Date: 2009-11-12 15:20:15 -0500 (Thu, 12 Nov 2009)
New Revision: 5000

Modified:
   api/trunk/cdi/src/main/java/javax/enterprise/context/ApplicationScoped.java
   api/trunk/cdi/src/main/java/javax/enterprise/context/RequestScoped.java
Log:
oopsie!

Modified: api/trunk/cdi/src/main/java/javax/enterprise/context/ApplicationScoped.java
===================================================================
--- api/trunk/cdi/src/main/java/javax/enterprise/context/ApplicationScoped.java	2009-11-12 20:14:27 UTC (rev 4999)
+++ api/trunk/cdi/src/main/java/javax/enterprise/context/ApplicationScoped.java	2009-11-12 20:20:15 UTC (rev 5000)
@@ -40,7 +40,6 @@
  * <tt>ServletContextListener</tt>, <tt>HttpSessionListener</tt>, 
  * <tt>AsyncListener</tt> or <tt>ServletRequestListener</tt>,</li>
  * <li>during any Java EE web service invocation,</li>
- * <li>during any asynchronous observer method notification,</li>
  * <li>during any remote method invocation of any EJB, during 
  * any asynchronous method invocation of any EJB, during any 
  * call to an EJB timeout method and during message delivery 
@@ -53,13 +52,12 @@
  * is called.</li>
  * </ul>
  * 
- * <p>The application context is shared between all servlet 
- * requests, asynchronous observer method notifications, web 
- * service invocations, EJB remote method invocations, EJB
+ * <p>The application context is shared between all servlet requests, 
+ * web service invocations, EJB remote method invocations, EJB
  * asynchronous method invocations, EJB timeouts and message 
- * deliveries to message-driven beans that execute within the 
- * same application. The application context is destroyed when 
- * the application is shut down.</p>
+ * deliveries to message-driven beans that execute within the same 
+ * application. The application context is destroyed when the 
+ * application is shut down.</p>
  * 
  * @author Gavin King
  * @author Pete Muir

Modified: api/trunk/cdi/src/main/java/javax/enterprise/context/RequestScoped.java
===================================================================
--- api/trunk/cdi/src/main/java/javax/enterprise/context/RequestScoped.java	2009-11-12 20:14:27 UTC (rev 4999)
+++ api/trunk/cdi/src/main/java/javax/enterprise/context/RequestScoped.java	2009-11-12 20:20:15 UTC (rev 5000)
@@ -38,7 +38,6 @@
  * filter and when the container calls any <tt>ServletRequestListener</tt> 
  * or <tt>AsyncListener</tt>,</li>
  * <li>during any Java EE web service invocation,</li>
- * <li>during any asynchronous observer method notification,</li>
  * <li>during any remote method invocation of any EJB, during 
  * any asynchronous method invocation of any EJB, during any 
  * call to an EJB timeout method and during message delivery 
@@ -55,7 +54,6 @@
  * method, all <tt>doFilter()</tt> methods, and all <tt>requestDestroyed()</tt>
  * and <tt>onComplete()</tt> notifications return,</li>
  * <li>after the web service invocation completes,</li>
- * <li>after the asynchronous observer notification completes,</li>
  * <li>after the EJB remote method invocation, asynchronous 
  * method invocation, timeout or message delivery completes, or</li>
  * <li>after the message delivery to the <tt>MessageListener</tt> 



More information about the weld-commits mailing list