You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by js...@apache.org on 2008/03/07 13:50:39 UTC

svn commit: r634648 - /activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/spi/BrowsableEndpoint.java

Author: jstrachan
Date: Fri Mar  7 04:50:39 2008
New Revision: 634648

URL: http://svn.apache.org/viewvc?rev=634648&view=rev
Log:
minor tweak to BrowsableEndpoint interface to fix a compile error until we zap the generics on Endpoint

Modified:
    activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/spi/BrowsableEndpoint.java

Modified: activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/spi/BrowsableEndpoint.java
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/spi/BrowsableEndpoint.java?rev=634648&r1=634647&r2=634648&view=diff
==============================================================================
--- activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/spi/BrowsableEndpoint.java (original)
+++ activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/spi/BrowsableEndpoint.java Fri Mar  7 04:50:39 2008
@@ -35,4 +35,12 @@
      * @return the exchanges on this endpoint
      */
     List<Exchange> getExchanges();
+
+    // TODO when we remove the generics on Endpoint we can zap the next bit
+    // and make this interface extend Endpoint
+
+    /**
+     * Returns the string representation of the endpoint URI
+     */
+    String getEndpointUri();
 }