summaryrefslogtreecommitdiffstats
path: root/branches/sca-equinox/modules/sca-api/src/main/java/org/osoa/sca/ComponentContext.java
diff options
context:
space:
mode:
authorjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2008-09-29 00:55:58 +0000
committerjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2008-09-29 00:55:58 +0000
commit04ef75e0a7e0e5928a90ca53a686665c2c634573 (patch)
treec76d796f5f31e2fb35236b3c0649508152742057 /branches/sca-equinox/modules/sca-api/src/main/java/org/osoa/sca/ComponentContext.java
parente538f4fa76999631e87de64e7e3b73cfad9b10be (diff)
Pulled from trunk. TUSCANY-2281 provide a api to allow service references to be retrieved for references where the multiplicity >1. Thanks to Daniel Stucky for the patch.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@699935 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches/sca-equinox/modules/sca-api/src/main/java/org/osoa/sca/ComponentContext.java')
-rw-r--r--branches/sca-equinox/modules/sca-api/src/main/java/org/osoa/sca/ComponentContext.java24
1 files changed, 24 insertions, 0 deletions
diff --git a/branches/sca-equinox/modules/sca-api/src/main/java/org/osoa/sca/ComponentContext.java b/branches/sca-equinox/modules/sca-api/src/main/java/org/osoa/sca/ComponentContext.java
index 616d4c6338..044deeb632 100644
--- a/branches/sca-equinox/modules/sca-api/src/main/java/org/osoa/sca/ComponentContext.java
+++ b/branches/sca-equinox/modules/sca-api/src/main/java/org/osoa/sca/ComponentContext.java
@@ -18,6 +18,8 @@
*/
package org.osoa.sca;
+import java.util.Collection;
+
/**
* Interface providing programmatic access to a component's SCA context as an alternative to injection.
* It provides access to reference and property values for the component and provides a mechanism for
@@ -106,4 +108,26 @@ public interface ComponentContext {
* @return the SCA request context; may be null
*/
RequestContext getRequestContext();
+
+
+ /* ******************** Contribution for issue TUSCANY-2281 ******************** */
+
+ /**
+ * Returns a Collection of typed service proxies for a business interface type and a reference name.
+ * @param businessInterface the interface that will be used to invoke the service
+ * @param referenceName the name of the reference
+ * @param <B> the Java type of the business interface for the reference
+ * @return a Collection of objects that implements the business interface
+ */
+ <B> Collection<B> getServices(Class<B> businessInterface, String referenceName);
+
+
+ /**
+ * Returns a Collection of typed service reference for a business interface type and a reference name.
+ * @param businessInterface the interface that will be used to invoke the service
+ * @param referenceName the name of the reference
+ * @param <B> the Java type of the business interface for the reference
+ * @return a Collection of objects that implements the business interface
+ */
+ <B> Collection<ServiceReference<B>> getServiceReferences(Class<B> businessInterface, String referenceName);
}