Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2007-10-18 17:09:15 +0000
committerslewis2007-10-18 17:09:15 +0000
commit0eaef482e030a1ad87beb14b8df1863eec712a2c (patch)
tree8fba6e86f578d04a1ec7cee145432e8dff154d49 /framework
parentca92140c45ab5a2fa80962a570b43cb460eb7556 (diff)
downloadorg.eclipse.ecf-0eaef482e030a1ad87beb14b8df1863eec712a2c.tar.gz
org.eclipse.ecf-0eaef482e030a1ad87beb14b8df1863eec712a2c.tar.xz
org.eclipse.ecf-0eaef482e030a1ad87beb14b8df1863eec712a2c.zip
Changed constants values to be clearer
Diffstat (limited to 'framework')
-rw-r--r--framework/bundles/org.eclipse.ecf.remoteservice/src/org/eclipse/ecf/remoteservice/Constants.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/bundles/org.eclipse.ecf.remoteservice/src/org/eclipse/ecf/remoteservice/Constants.java b/framework/bundles/org.eclipse.ecf.remoteservice/src/org/eclipse/ecf/remoteservice/Constants.java
index ddf7f46b1..1f422b698 100644
--- a/framework/bundles/org.eclipse.ecf.remoteservice/src/org/eclipse/ecf/remoteservice/Constants.java
+++ b/framework/bundles/org.eclipse.ecf.remoteservice/src/org/eclipse/ecf/remoteservice/Constants.java
@@ -145,14 +145,14 @@ public interface Constants {
* This property may be supplied in the properties <code>Dictionary</code>
* object passed to the <code>BundleContext.registerService</code> method.
*/
- public static final String SERVICE_REGISTRATION_CONTAINER_ID = "org.eclipse.ecf.containerID"; //$NON-NLS-1$
+ public static final String REMOTE_SERVICE_CONTAINER_ID = "org.eclipse.ecf.containerID"; //$NON-NLS-1$
/**
- * Service property that determines whether a remote service is added to the local
+ * Service property that determines whether a remote service proxy is automatically added to the local
* service registry. If present in the remote service registration properties,
* the associated remote service proxy will be added to the local service registry.
*/
- public static final String PROXY_SERVICE_REGISTRATION = "org.eclipse.ecf.serviceRegistrationRemote"; //$NON-NLS-1$
+ public static final String AUTOREGISTER_REMOTE_PROXY = "org.eclipse.ecf.serviceRegistrationRemote"; //$NON-NLS-1$
/**
* Remote Service property. If a ServiceReference has the REMOTE_SERVICE property,

Back to the top