summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2012-08-16 15:58:24 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2012-08-16 15:58:24 +0000
commit0311cb3720748d4481d1122db551ca084629e230 (patch)
treeb4ed5f20fc17d4d8753c46bd7cdd2ecf465d05d3 /sca-java-2.x
parente34d8da9a0db50dae9186c6b54a32a9510da6be7 (diff)
Fix compile error with method signature
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1373893 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x')
-rw-r--r--sca-java-2.x/trunk/modules/implementation-web-runtime/src/main/java/org/apache/tuscany/sca/implementation/web/runtime/ComponentContextProxy.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/modules/implementation-web-runtime/src/main/java/org/apache/tuscany/sca/implementation/web/runtime/ComponentContextProxy.java b/sca-java-2.x/trunk/modules/implementation-web-runtime/src/main/java/org/apache/tuscany/sca/implementation/web/runtime/ComponentContextProxy.java
index 252954560a..2b7e560f47 100644
--- a/sca-java-2.x/trunk/modules/implementation-web-runtime/src/main/java/org/apache/tuscany/sca/implementation/web/runtime/ComponentContextProxy.java
+++ b/sca-java-2.x/trunk/modules/implementation-web-runtime/src/main/java/org/apache/tuscany/sca/implementation/web/runtime/ComponentContextProxy.java
@@ -89,4 +89,9 @@ public class ComponentContextProxy implements TuscanyComponentContext {
return getComponentContext().getExtensionPointRegistry();
}
+ @Override
+ public Object getNode() {
+ return getComponentContext().getNode();
+ }
+
}