You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2012/08/15 20:24:27 UTC

svn commit: r1373550 - /tuscany/sca-java-2.x/trunk/modules/implementation-web-runtime/src/main/java/org/apache/tuscany/sca/implementation/web/runtime/ComponentContextProxy.java

Author: antelder
Date: Wed Aug 15 18:24:21 2012
New Revision: 1373550

URL: http://svn.apache.org/viewvc?rev=1373550&view=rev
Log:
add method impl for ComponnetContext interface update

Modified:
    tuscany/sca-java-2.x/trunk/modules/implementation-web-runtime/src/main/java/org/apache/tuscany/sca/implementation/web/runtime/ComponentContextProxy.java

Modified: tuscany/sca-java-2.x/trunk/modules/implementation-web-runtime/src/main/java/org/apache/tuscany/sca/implementation/web/runtime/ComponentContextProxy.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/modules/implementation-web-runtime/src/main/java/org/apache/tuscany/sca/implementation/web/runtime/ComponentContextProxy.java?rev=1373550&r1=1373549&r2=1373550&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/modules/implementation-web-runtime/src/main/java/org/apache/tuscany/sca/implementation/web/runtime/ComponentContextProxy.java (original)
+++ tuscany/sca-java-2.x/trunk/modules/implementation-web-runtime/src/main/java/org/apache/tuscany/sca/implementation/web/runtime/ComponentContextProxy.java Wed Aug 15 18:24:21 2012
@@ -21,6 +21,7 @@ package org.apache.tuscany.sca.implement
 
 import java.util.Collection;
 
+import org.apache.tuscany.sca.core.ExtensionPointRegistry;
 import org.apache.tuscany.sca.runtime.RuntimeComponent;
 import org.apache.tuscany.sca.runtime.TuscanyComponentContext;
 import org.apache.tuscany.sca.runtime.TuscanyServiceReference;
@@ -83,4 +84,9 @@ public class ComponentContextProxy imple
         return getComponentContext().getURI();
     }
 
+    @Override
+    public ExtensionPointRegistry getExtensionPointRegistry() {
+        return getComponentContext().getExtensionPointRegistry();
+    }
+
 }