Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2009-12-11 23:47:16 +0000
committerslewis2009-12-11 23:47:16 +0000
commit91ee384344a380d075ba315736c9693fe07687d2 (patch)
tree3ea053639d5e633525a3fd684cd20bbee54a79f3 /examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.host
parentd9c06341820f4f88e986a7d6cb54eb73aaa7f2ef (diff)
downloadorg.eclipse.ecf-91ee384344a380d075ba315736c9693fe07687d2.tar.gz
org.eclipse.ecf-91ee384344a380d075ba315736c9693fe07687d2.tar.xz
org.eclipse.ecf-91ee384344a380d075ba315736c9693fe07687d2.zip
Changes for support of progress on bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=290446
Diffstat (limited to 'examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.host')
-rw-r--r--examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.host/src/org/eclipse/ecf/internal/examples/remoteservices/hello/host/HelloHostApplication.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.host/src/org/eclipse/ecf/internal/examples/remoteservices/hello/host/HelloHostApplication.java b/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.host/src/org/eclipse/ecf/internal/examples/remoteservices/hello/host/HelloHostApplication.java
index e12938a85..64fd4e0a0 100644
--- a/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.host/src/org/eclipse/ecf/internal/examples/remoteservices/hello/host/HelloHostApplication.java
+++ b/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.host/src/org/eclipse/ecf/internal/examples/remoteservices/hello/host/HelloHostApplication.java
@@ -54,7 +54,7 @@ public class HelloHostApplication implements IApplication,
Properties props = new Properties();
// add OSGi service property indicating this
- props.put(REMOTE_INTERFACES, REMOTE_INTERFACES_WILDCARD);
+ props.put(SERVICE_EXPORTED_INTERFACES, SERVICE_EXPORTED_INTERFACES_WILDCARD);
// register remote service
helloRegistration = bundleContext.registerService(IHello.class
.getName(), new Hello(), props);

Back to the top