(no commit message)
[utils] / system / general / src / main / java / org / wamblee / system / core / Scope.java
index ea814da377ee14938b7a0d0c02a77f5409a06459..1b9f66154597e7aaa190a77f5acc3c58dbf0414c 100644 (file)
@@ -15,6 +15,8 @@
  */ 
 package org.wamblee.system.core;
 
+import java.util.List;
+
 /**
  * A scope represents a set of running services and the runtime information for the 
  * started components and is (usually) the result of 
@@ -28,7 +30,7 @@ public interface Scope {
         * Gets the provided interfaces by this scope. 
         * @return Provided interfaces. 
         */
-       ProvidedInterface[] getProvidedInterfaces();
+       List<ProvidedInterface> getProvidedInterfaces();
        
        /**
         * Adds a key value pair to the scope. 
@@ -55,14 +57,14 @@ public interface Scope {
         * Publishes an implementation of a provided interface. 
         * @param aComponent Component that provides the interface.
         * @param aInterface Interface that is provided.
-        * @param aImplementation Implementation of the interface.
-        * @return Returns a unique id of the published interface.  
+        * @param aImplementation Implementation of the interface.  
         */
        void publishInterface(ProvidedInterface aInterface, Object aImplementation); 
        
        /**
         * Retrieves an implementation of a provided interface. 
-        * @param aProvided Provided interface. If it is null then null is returned.  
+        * @param aProvided P
+        * rovided interface. If it is null then null is returned.  
         * @param aType Type of implementation that is expected.
         * @return Retrieved interface.
         */