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 2007/08/31 18:21:30 UTC

svn commit: r571510 - /activemq/camel/trunk/components/camel-http/src/main/java/org/apache/camel/component/http/HttpEndpoint.java

Author: jstrachan
Date: Fri Aug 31 09:21:29 2007
New Revision: 571510

URL: http://svn.apache.org/viewvc?rev=571510&view=rev
Log:
fixed compile error in camel-jetty

Modified:
    activemq/camel/trunk/components/camel-http/src/main/java/org/apache/camel/component/http/HttpEndpoint.java

Modified: activemq/camel/trunk/components/camel-http/src/main/java/org/apache/camel/component/http/HttpEndpoint.java
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-http/src/main/java/org/apache/camel/component/http/HttpEndpoint.java?rev=571510&r1=571509&r2=571510&view=diff
==============================================================================
--- activemq/camel/trunk/components/camel-http/src/main/java/org/apache/camel/component/http/HttpEndpoint.java (original)
+++ activemq/camel/trunk/components/camel-http/src/main/java/org/apache/camel/component/http/HttpEndpoint.java Fri Aug 31 09:21:29 2007
@@ -17,6 +17,7 @@
 package org.apache.camel.component.http;
 
 import org.apache.camel.PollingConsumer;
+import org.apache.camel.Producer;
 import org.apache.camel.impl.DefaultPollingEndpoint;
 
 import javax.servlet.http.HttpServletRequest;
@@ -42,7 +43,7 @@
         this.httpUri = httpURI;
     }
 
-    public HttpProducer createProducer() throws Exception {
+    public Producer<HttpExchange> createProducer() throws Exception {
         return new HttpProducer(this);
     }