Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2008-02-04 07:07:18 +0000
committerslewis2008-02-04 07:07:18 +0000
commit623c64052158fd1d3ffe762cf29234cf15627ad2 (patch)
treec14575277f2486309bf3aaa5e61027f93dd1597b /framework
parent1df47b9409e69f13f802fc0393e6befde90e6463 (diff)
downloadorg.eclipse.ecf-623c64052158fd1d3ffe762cf29234cf15627ad2.tar.gz
org.eclipse.ecf-623c64052158fd1d3ffe762cf29234cf15627ad2.tar.xz
org.eclipse.ecf-623c64052158fd1d3ffe762cf29234cf15627ad2.zip
Added constants for discovery type and properties
Diffstat (limited to 'framework')
-rw-r--r--framework/bundles/org.eclipse.ecf.remoteservice/src/org/eclipse/ecf/remoteservice/Constants.java10
1 files changed, 10 insertions, 0 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 a6b7043f7..d68d9f57b 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
@@ -204,6 +204,16 @@ public interface Constants {
* property is <b>required</b> if the DISCOVERY_SERVICE_TYPE is as given above.
*/
public static final String DISCOVERY_TARGET_ID_NAMESPACE_PROPERTY = "tns"; //$NON-NLS-1$
+
+ /**
+ * Discovery service property for a 'remoteservices' discovery type. Note that this
+ * property is <b>optional</b> if the DISCOVERY_SERVICE_TYPE is as given above. It is expected
+ * that clients will use the value of this property, along with the DISCOVERY_TARGET_ID_NAMESPACE_PROPERTY
+ * to create an ID instance for the 'idFilter' parameter via
+ * remoteServicesContainerAdapter.getRemoteServiceReferences(ID [] idFilter, String clazz, String filter).
+ */
+ public static final String DISCOVERY_TARGET_ID_PROPERTY = "tid"; //$NON-NLS-1$
+
/**
* Discovery service property for specifying the remote interface type. Note that this
* property is <b>required</b> if the DISCOVERY_SERVICE_TYPE is as given. It is expected

Back to the top