You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@river.apache.org by pe...@apache.org on 2010/12/28 13:03:59 UTC

svn commit: r1053318 - /incubator/river/jtsk/skunk/pepe/src/org/apache/river/api/lookup/MarshalledServiceItem.java

Author: peter_firmstone
Date: Tue Dec 28 12:03:59 2010
New Revision: 1053318

URL: http://svn.apache.org/viewvc?rev=1053318&view=rev
Log:
Minor refactoring

Modified:
    incubator/river/jtsk/skunk/pepe/src/org/apache/river/api/lookup/MarshalledServiceItem.java

Modified: incubator/river/jtsk/skunk/pepe/src/org/apache/river/api/lookup/MarshalledServiceItem.java
URL: http://svn.apache.org/viewvc/incubator/river/jtsk/skunk/pepe/src/org/apache/river/api/lookup/MarshalledServiceItem.java?rev=1053318&r1=1053317&r2=1053318&view=diff
==============================================================================
--- incubator/river/jtsk/skunk/pepe/src/org/apache/river/api/lookup/MarshalledServiceItem.java (original)
+++ incubator/river/jtsk/skunk/pepe/src/org/apache/river/api/lookup/MarshalledServiceItem.java Tue Dec 28 12:03:59 2010
@@ -41,7 +41,8 @@ public abstract class MarshalledServiceI
     }
     /**
      * Unmarshall the service proxy. 
-     * @param code load service with a local or existing CodeSource.
+     * @param load service with local or existing CodeSource or null for
+     * default.
      * @return the service proxy, null if class not found.
      */
     public abstract Object getService(CodeSource[] code);
@@ -51,5 +52,5 @@ public abstract class MarshalledServiceI
      */
     public abstract Entry[] getEntries();
     
-    public abstract Collection<? extends URI> getAnnotations();
+    public abstract URI[] getAnnotations();
 }