summaryrefslogtreecommitdiffstats
path: root/sandbox/wjaniszewski/binding-erlang-runtime/src/test/java/org/apache/tuscany/sca/binding/erlang/testing/ReferenceTestComponentImpl.java
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/wjaniszewski/binding-erlang-runtime/src/test/java/org/apache/tuscany/sca/binding/erlang/testing/ReferenceTestComponentImpl.java')
-rw-r--r--sandbox/wjaniszewski/binding-erlang-runtime/src/test/java/org/apache/tuscany/sca/binding/erlang/testing/ReferenceTestComponentImpl.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/sandbox/wjaniszewski/binding-erlang-runtime/src/test/java/org/apache/tuscany/sca/binding/erlang/testing/ReferenceTestComponentImpl.java b/sandbox/wjaniszewski/binding-erlang-runtime/src/test/java/org/apache/tuscany/sca/binding/erlang/testing/ReferenceTestComponentImpl.java
index 49a06a9256..f9f9a99054 100644
--- a/sandbox/wjaniszewski/binding-erlang-runtime/src/test/java/org/apache/tuscany/sca/binding/erlang/testing/ReferenceTestComponentImpl.java
+++ b/sandbox/wjaniszewski/binding-erlang-runtime/src/test/java/org/apache/tuscany/sca/binding/erlang/testing/ReferenceTestComponentImpl.java
@@ -5,7 +5,7 @@ import org.osoa.sca.annotations.Reference;
public class ReferenceTestComponentImpl implements ReferenceTestComponent {
private MboxInterface mboxReference;
- private ServiceTestComponent moduleReference;
+ private ServiceInterface moduleReference;
@Reference
public void setMboxReference(MboxInterface mboxReference) {
@@ -13,7 +13,7 @@ public class ReferenceTestComponentImpl implements ReferenceTestComponent {
}
@Reference
- public void setModuleReference(ServiceTestComponent moduleReference) {
+ public void setModuleReference(ServiceInterface moduleReference) {
this.moduleReference = moduleReference;
}
@@ -21,7 +21,7 @@ public class ReferenceTestComponentImpl implements ReferenceTestComponent {
return mboxReference;
}
- public ServiceTestComponent getModuleReference() {
+ public ServiceInterface getModuleReference() {
return moduleReference;
}