Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/bundles/com.mycorp.examples.timeservice.host/src')
-rw-r--r--examples/bundles/com.mycorp.examples.timeservice.host/src/com/mycorp/examples/timeservice/host/Activator.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/bundles/com.mycorp.examples.timeservice.host/src/com/mycorp/examples/timeservice/host/Activator.java b/examples/bundles/com.mycorp.examples.timeservice.host/src/com/mycorp/examples/timeservice/host/Activator.java
index 526182f85..6150852c0 100644
--- a/examples/bundles/com.mycorp.examples.timeservice.host/src/com/mycorp/examples/timeservice/host/Activator.java
+++ b/examples/bundles/com.mycorp.examples.timeservice.host/src/com/mycorp/examples/timeservice/host/Activator.java
@@ -73,7 +73,9 @@ public class Activator implements BundleActivator {
for (Object k : props.keySet()) {
if (k instanceof String) {
String key = (String) k;
- if (key.startsWith(config) || key.startsWith("osgi.") || key.startsWith("service."))
+ if (key.startsWith(config) || key.startsWith("osgi.basic") || key.startsWith("osgi.private")
+ || key.startsWith("osgi.confidential") || key.startsWith("osgi.async")
+ || key.startsWith("service."))
result.put(key, props.get(key));
}
}

Back to the top