Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2009-02-20 01:40:02 +0000
committerslewis2009-02-20 01:40:02 +0000
commit1dd4c9203fce97aec7dcb442439236bd2793e318 (patch)
tree7cb18556c06f582f56eb36b9312fe331578a2020
parenta0318852a47ad760c61d85e19ac5fb47459b7803 (diff)
downloadorg.eclipse.ecf-1dd4c9203fce97aec7dcb442439236bd2793e318.tar.gz
org.eclipse.ecf-1dd4c9203fce97aec7dcb442439236bd2793e318.tar.xz
org.eclipse.ecf-1dd4c9203fce97aec7dcb442439236bd2793e318.zip
Added API to core for bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=249240
-rw-r--r--providers/bundles/org.eclipse.ecf.provider.r_osgi/src/org/eclipse/ecf/internal/provider/r_osgi/R_OSGiContainerInstantiator.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/providers/bundles/org.eclipse.ecf.provider.r_osgi/src/org/eclipse/ecf/internal/provider/r_osgi/R_OSGiContainerInstantiator.java b/providers/bundles/org.eclipse.ecf.provider.r_osgi/src/org/eclipse/ecf/internal/provider/r_osgi/R_OSGiContainerInstantiator.java
index 8c14033c9..e03a076f5 100644
--- a/providers/bundles/org.eclipse.ecf.provider.r_osgi/src/org/eclipse/ecf/internal/provider/r_osgi/R_OSGiContainerInstantiator.java
+++ b/providers/bundles/org.eclipse.ecf.provider.r_osgi/src/org/eclipse/ecf/internal/provider/r_osgi/R_OSGiContainerInstantiator.java
@@ -27,6 +27,8 @@ import org.eclipse.ecf.remoteservice.IRemoteServiceContainerAdapter;
*/
public final class R_OSGiContainerInstantiator implements IContainerInstantiator {
+ public static final String[] r_OSGiIntents = {"passByValue", "exactlyOnce", "ordered",}; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
+
/**
* creates a new container instance.
*
@@ -79,4 +81,8 @@ public final class R_OSGiContainerInstantiator implements IContainerInstantiator
return new Class[][] {new Class[] {}, new Class[] {ID.class}};
}
+ public String[] getSupportedIntents(ContainerTypeDescription description) {
+ return r_OSGiIntents;
+ }
+
} \ No newline at end of file

Back to the top