Return-Path: Delivered-To: apmail-camel-commits-archive@www.apache.org Received: (qmail 5655 invoked from network); 4 Jan 2010 09:04:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 4 Jan 2010 09:04:19 -0000 Received: (qmail 38573 invoked by uid 500); 4 Jan 2010 08:57:39 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 38539 invoked by uid 500); 4 Jan 2010 08:57:39 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 38525 invoked by uid 99); 4 Jan 2010 08:57:39 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Jan 2010 08:57:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Jan 2010 08:57:38 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B8F322388994; Mon, 4 Jan 2010 08:57:18 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r895580 - /camel/trunk/camel-core/src/main/java/org/apache/camel/Exchange.java Date: Mon, 04 Jan 2010 08:57:18 -0000 To: commits@camel.apache.org From: ningjiang@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100104085718.B8F322388994@eris.apache.org> Author: ningjiang Date: Mon Jan 4 08:57:18 2010 New Revision: 895580 URL: http://svn.apache.org/viewvc?rev=895580&view=rev Log: CAMEL-2329 added chunked option into camel-jetty endpoint Modified: camel/trunk/camel-core/src/main/java/org/apache/camel/Exchange.java Modified: camel/trunk/camel-core/src/main/java/org/apache/camel/Exchange.java URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/main/java/org/apache/camel/Exchange.java?rev=895580&r1=895579&r2=895580&view=diff ============================================================================== --- camel/trunk/camel-core/src/main/java/org/apache/camel/Exchange.java (original) +++ camel/trunk/camel-core/src/main/java/org/apache/camel/Exchange.java Mon Jan 4 08:57:18 2010 @@ -78,6 +78,7 @@ String HTTP_RESPONSE_CODE = "CamelHttpResponseCode"; String HTTP_URI = "CamelHttpUri"; String HTTP_URL = "CamelHttpUrl"; + String HTTP_CHUNKED = "CamelHttpChunked"; String INTERCEPTED_ENDPOINT = "CamelInterceptedEndpoint"; String TO_ENDPOINT = "CamelToEndpoint";