You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ra...@apache.org on 2008/07/31 18:18:13 UTC

svn commit: r681408 - /incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/AMQConnectionURL.java

Author: rajith
Date: Thu Jul 31 09:17:59 2008
New Revision: 681408

URL: http://svn.apache.org/viewvc?rev=681408&view=rev
Log:
This is related to QPID-1208 .
I have enabled the code which will print xxxx when the log level != debug.


Modified:
    incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/AMQConnectionURL.java

Modified: incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/AMQConnectionURL.java
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/AMQConnectionURL.java?rev=681408&r1=681407&r2=681408&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/AMQConnectionURL.java (original)
+++ incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/AMQConnectionURL.java Thu Jul 31 09:17:59 2008
@@ -225,8 +225,7 @@
 
     public String toString()
     {
-        return _url;
-        /*StringBuffer sb = new StringBuffer();
+        StringBuffer sb = new StringBuffer();
 
         sb.append(AMQ_PROTOCOL);
         sb.append("://");
@@ -257,7 +256,7 @@
 
         sb.append(optionsToString());
 
-        return sb.toString();*/
+        return sb.toString();
     }
 
     private String optionsToString()
@@ -290,7 +289,7 @@
     public static void main(String[] args) throws URLSyntaxException
     {
         String url2 =
-            "amqp://ritchiem:bob@temp?brokerlist='tcp://localhost:5672;jcp://fancyserver:3000/',failover='roundrobin'";
+            "amqp://ritchiem:bob@temp/testHost?brokerlist='tcp://localhost:5672;tcp://fancyserver:3000/',failover='roundrobin'";
         // "amqp://user:pass@clientid/virtualhost?brokerlist='tcp://host:1?option1=\'value\',option2=\'value\';vm://:3?option1=\'value\'',failover='method?option1=\'value\',option2='value''";
 
         ConnectionURL connectionurl2 = new AMQConnectionURL(url2);