You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by st...@apache.org on 2014/06/27 17:36:00 UTC

svn commit: r1606129 - /geronimo/specs/trunk/geronimo-jcdi_1.1_spec/src/main/java/javax/enterprise/context/spi/AlterableContext.java

Author: struberg
Date: Fri Jun 27 15:35:59 2014
New Revision: 1606129

URL: http://svn.apache.org/r1606129
Log:
GERONIMO-6514 AlterableContext extends Context

Modified:
    geronimo/specs/trunk/geronimo-jcdi_1.1_spec/src/main/java/javax/enterprise/context/spi/AlterableContext.java

Modified: geronimo/specs/trunk/geronimo-jcdi_1.1_spec/src/main/java/javax/enterprise/context/spi/AlterableContext.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jcdi_1.1_spec/src/main/java/javax/enterprise/context/spi/AlterableContext.java?rev=1606129&r1=1606128&r2=1606129&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jcdi_1.1_spec/src/main/java/javax/enterprise/context/spi/AlterableContext.java (original)
+++ geronimo/specs/trunk/geronimo-jcdi_1.1_spec/src/main/java/javax/enterprise/context/spi/AlterableContext.java Fri Jun 27 15:35:59 2014
@@ -19,12 +19,12 @@
 package javax.enterprise.context.spi;
 
 /**
- * Allows to manually destroy the Contextual Cnstance
+ * A Context which allows to manually destroy the Contextual Instance
  * of the given Bean.
  * Contexts for NormalScoped beans should implement this
  * interface from CDI-1.1 on.
  */
-public interface AlterableContext
+public interface AlterableContext extends Context
 {
     public void destroy(Contextual<?> contextual);
 }