Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2013-05-17 22:49:44 +0000
committerslewis2013-05-17 22:49:44 +0000
commitae7682db107ccb0caf007520558f53a5d0b82f8f (patch)
tree75e8778a56deafda51d8e2be8b33f67acce970d5
parent4bd84880758bc255adf35807d0e11e23514c7720 (diff)
downloadorg.eclipse.ecf-ae7682db107ccb0caf007520558f53a5d0b82f8f.tar.gz
org.eclipse.ecf-ae7682db107ccb0caf007520558f53a5d0b82f8f.tar.xz
org.eclipse.ecf-ae7682db107ccb0caf007520558f53a5d0b82f8f.zip
Changed DISCOVERY_SERVICE_TYPE from ecf.osgirsvc to ecfosgirsvc to avoid
having a '.' in the value. It seems that JSLP spec might require '.' to be a delimiter, so we can't have it in our value.
-rw-r--r--osgi/bundles/org.eclipse.ecf.osgi.services.remoteserviceadmin/src/org/eclipse/ecf/osgi/services/remoteserviceadmin/RemoteConstants.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/osgi/bundles/org.eclipse.ecf.osgi.services.remoteserviceadmin/src/org/eclipse/ecf/osgi/services/remoteserviceadmin/RemoteConstants.java b/osgi/bundles/org.eclipse.ecf.osgi.services.remoteserviceadmin/src/org/eclipse/ecf/osgi/services/remoteserviceadmin/RemoteConstants.java
index 7d0624ccf..ee32fc874 100644
--- a/osgi/bundles/org.eclipse.ecf.osgi.services.remoteserviceadmin/src/org/eclipse/ecf/osgi/services/remoteserviceadmin/RemoteConstants.java
+++ b/osgi/bundles/org.eclipse.ecf.osgi.services.remoteserviceadmin/src/org/eclipse/ecf/osgi/services/remoteserviceadmin/RemoteConstants.java
@@ -35,7 +35,7 @@ public class RemoteConstants {
* value as one of the entries in the list returned from
* {@link IServiceTypeID#getServices()}.
*/
- public static final String DISCOVERY_SERVICE_TYPE = "ecf.osgirsvc"; //$NON-NLS-1$
+ public static final String DISCOVERY_SERVICE_TYPE = "ecfosgirsvc"; //$NON-NLS-1$
/**
* ECF discovery scope property. Value type is String+. If set, the value
* will be used by the {@link IServiceInfoFactory} during

Back to the top