You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by wt...@apache.org on 2009/01/01 18:38:15 UTC

svn commit: r730571 - /activemq/camel/trunk/components/camel-restlet/src/main/java/org/apache/camel/component/restlet/RestletHeaderFilterStrategy.java

Author: wtam
Date: Thu Jan  1 09:38:15 2009
New Revision: 730571

URL: http://svn.apache.org/viewvc?rev=730571&view=rev
Log:
[CAMEL-1203] Restlet component: remove out filter for "org.restlet." headers

Modified:
    activemq/camel/trunk/components/camel-restlet/src/main/java/org/apache/camel/component/restlet/RestletHeaderFilterStrategy.java

Modified: activemq/camel/trunk/components/camel-restlet/src/main/java/org/apache/camel/component/restlet/RestletHeaderFilterStrategy.java
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-restlet/src/main/java/org/apache/camel/component/restlet/RestletHeaderFilterStrategy.java?rev=730571&r1=730570&r2=730571&view=diff
==============================================================================
--- activemq/camel/trunk/components/camel-restlet/src/main/java/org/apache/camel/component/restlet/RestletHeaderFilterStrategy.java (original)
+++ activemq/camel/trunk/components/camel-restlet/src/main/java/org/apache/camel/component/restlet/RestletHeaderFilterStrategy.java Thu Jan  1 09:38:15 2009
@@ -29,9 +29,6 @@
         // No IN filters and copy all headers from Restlet to Camel
         
         // OUT filters (from Camel headers to Restlet headers)
-        // filter headers start with the org.restlet.
-        setOutFilterPattern("(org\\.restlet)[\\.|a-z|A-z|0-9]*");
-        
         // filter headers used internally by this component
         getOutFilter().add(RestletConstants.LOGIN);
         getOutFilter().add(RestletConstants.PASSWORD);