Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2009-03-13 17:07:42 +0000
committerslewis2009-03-13 17:07:42 +0000
commitc950f8766ea3fd7f8808e3dbee1fbe206601b6d7 (patch)
treef9efc0aab271ff0d0a8d064443aef44a95878078 /compendium/bundles/org.eclipse.ecf.osgi.services.distribution
parent05783b3343e3487d2bd8e1996cb3d70017ac3134 (diff)
downloadorg.eclipse.ecf-c950f8766ea3fd7f8808e3dbee1fbe206601b6d7.tar.gz
org.eclipse.ecf-c950f8766ea3fd7f8808e3dbee1fbe206601b6d7.tar.xz
org.eclipse.ecf-c950f8766ea3fd7f8808e3dbee1fbe206601b6d7.zip
Change of service property osgi.intents to service.intents
Diffstat (limited to 'compendium/bundles/org.eclipse.ecf.osgi.services.distribution')
-rw-r--r--compendium/bundles/org.eclipse.ecf.osgi.services.distribution/src/org/eclipse/ecf/osgi/services/distribution/ECFServiceConstants.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/compendium/bundles/org.eclipse.ecf.osgi.services.distribution/src/org/eclipse/ecf/osgi/services/distribution/ECFServiceConstants.java b/compendium/bundles/org.eclipse.ecf.osgi.services.distribution/src/org/eclipse/ecf/osgi/services/distribution/ECFServiceConstants.java
index ca5542015..5e154229b 100644
--- a/compendium/bundles/org.eclipse.ecf.osgi.services.distribution/src/org/eclipse/ecf/osgi/services/distribution/ECFServiceConstants.java
+++ b/compendium/bundles/org.eclipse.ecf.osgi.services.distribution/src/org/eclipse/ecf/osgi/services/distribution/ECFServiceConstants.java
@@ -12,9 +12,9 @@ package org.eclipse.ecf.osgi.services.distribution;
public interface ECFServiceConstants {
/*
- * osgi.intents – an optional list of intents provided by the service. The
- * property advertises capabilities of the service and can be used by the
- * service consumer in the lookup filter to only select a service that
+ * service.intents – an optional list of intents provided by the service.
+ * The property advertises capabilities of the service and can be used by
+ * the service consumer in the lookup filter to only select a service that
* provides certain qualities of service. The value of this property is of
* type String[] and has to be provided by the service as part of the
* registration, regardless whether it’s a local service or a proxy. The
@@ -25,7 +25,7 @@ public interface ECFServiceConstants {
* Distribution being mechanism. Therefore the value of this property can
* vary between the client side proxy and the server side.
*/
- public static final String OSGI_INTENTS = "osgi.intents";
+ public static final String SERVICE_INTENTS = "service.intents";
/*
* osgi.remote.interfaces – [ “*” | interface_name [, interface_name]* ]: A

Back to the top