You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ge...@apache.org on 2010/10/11 12:12:21 UTC

svn commit: r1021297 - in /geronimo/server/trunk/framework/modules: geronimo-deployment/src/main/java/org/apache/geronimo/deployment/AbstractBuilderCollection.java geronimo-kernel/src/main/java/org/apache/geronimo/gbean/runtime/ProxyCollection.java

Author: genspring
Date: Mon Oct 11 10:12:20 2010
New Revision: 1021297

URL: http://svn.apache.org/viewvc?rev=1021297&view=rev
Log:
Make it easier to view the builder list when debuging the deployment process.

Modified:
    geronimo/server/trunk/framework/modules/geronimo-deployment/src/main/java/org/apache/geronimo/deployment/AbstractBuilderCollection.java
    geronimo/server/trunk/framework/modules/geronimo-kernel/src/main/java/org/apache/geronimo/gbean/runtime/ProxyCollection.java

Modified: geronimo/server/trunk/framework/modules/geronimo-deployment/src/main/java/org/apache/geronimo/deployment/AbstractBuilderCollection.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/framework/modules/geronimo-deployment/src/main/java/org/apache/geronimo/deployment/AbstractBuilderCollection.java?rev=1021297&r1=1021296&r2=1021297&view=diff
==============================================================================
--- geronimo/server/trunk/framework/modules/geronimo-deployment/src/main/java/org/apache/geronimo/deployment/AbstractBuilderCollection.java (original)
+++ geronimo/server/trunk/framework/modules/geronimo-deployment/src/main/java/org/apache/geronimo/deployment/AbstractBuilderCollection.java Mon Oct 11 10:12:20 2010
@@ -88,4 +88,9 @@ public abstract class AbstractBuilderCol
     public QNameSet getPlanQNameSet() {
         return null;
     }
+    
+    public String toString(){
+        
+        return builders.toString();
+    }
 }

Modified: geronimo/server/trunk/framework/modules/geronimo-kernel/src/main/java/org/apache/geronimo/gbean/runtime/ProxyCollection.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/framework/modules/geronimo-kernel/src/main/java/org/apache/geronimo/gbean/runtime/ProxyCollection.java?rev=1021297&r1=1021296&r2=1021297&view=diff
==============================================================================
--- geronimo/server/trunk/framework/modules/geronimo-kernel/src/main/java/org/apache/geronimo/gbean/runtime/ProxyCollection.java (original)
+++ geronimo/server/trunk/framework/modules/geronimo-kernel/src/main/java/org/apache/geronimo/gbean/runtime/ProxyCollection.java Mon Oct 11 10:12:20 2010
@@ -258,4 +258,9 @@ class ProxyCollection implements Referen
     public void clear() {
         throw new UnsupportedOperationException();
     }
+    
+    public String toString(){
+        return proxies.keySet().toString();
+        
+    }
 }