summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/modules/implementation-web-runtime/src/main/java/org/apache/tuscany/sca/implementation/web/runtime/ComponentContextProxy.java
diff options
context:
space:
mode:
Diffstat (limited to 'branches/sca-java-1.x/modules/implementation-web-runtime/src/main/java/org/apache/tuscany/sca/implementation/web/runtime/ComponentContextProxy.java')
-rw-r--r--branches/sca-java-1.x/modules/implementation-web-runtime/src/main/java/org/apache/tuscany/sca/implementation/web/runtime/ComponentContextProxy.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/branches/sca-java-1.x/modules/implementation-web-runtime/src/main/java/org/apache/tuscany/sca/implementation/web/runtime/ComponentContextProxy.java b/branches/sca-java-1.x/modules/implementation-web-runtime/src/main/java/org/apache/tuscany/sca/implementation/web/runtime/ComponentContextProxy.java
index dba3f62d35..c4f39bded8 100644
--- a/branches/sca-java-1.x/modules/implementation-web-runtime/src/main/java/org/apache/tuscany/sca/implementation/web/runtime/ComponentContextProxy.java
+++ b/branches/sca-java-1.x/modules/implementation-web-runtime/src/main/java/org/apache/tuscany/sca/implementation/web/runtime/ComponentContextProxy.java
@@ -21,6 +21,7 @@ package org.apache.tuscany.sca.implementation.web.runtime;
import java.util.Collection;
+import org.apache.tuscany.sca.api.ComponentContextExtension;
import org.apache.tuscany.sca.runtime.RuntimeComponent;
import org.osoa.sca.CallableReference;
import org.osoa.sca.ComponentContext;
@@ -77,11 +78,11 @@ public class ComponentContextProxy implements ComponentContext {
}
public <B> Collection<ServiceReference<B>> getServiceReferences(Class<B> businessInterface, String referenceName) {
- return getComponentContext().getServiceReferences(businessInterface, referenceName);
+ return ((ComponentContextExtension)getComponentContext()).getServiceReferences(businessInterface, referenceName);
}
public <B> Collection<B> getServices(Class<B> businessInterface, String referenceName) {
- return getComponentContext().getServices(businessInterface, referenceName);
+ return ((ComponentContextExtension)getComponentContext()).getServices(businessInterface, referenceName);
}
}