Author: ningjiang Date: Mon Dec 20 06:58:28 2010 New Revision: 1051003 URL: http://svn.apache.org/viewvc?rev=1051003&view=rev Log: CAMEL-3443 Added the missed file HttpHelper in the camel-http4
Added: camel/trunk/components/camel-http4/src/main/java/org/apache/camel/component/http4/helper/HttpHelper.java (with props) Added: camel/trunk/components/camel-http4/src/main/java/org/apache/camel/component/http4/helper/HttpHelper.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-http4/src/main/java/org/apache/camel/component/http4/helper/HttpHelper.java?rev=1051003&view=auto ============================================================================== --- camel/trunk/components/camel-http4/src/main/java/org/apache/camel/component/http4/helper/HttpHelper.java (added) +++ camel/trunk/components/camel-http4/src/main/java/org/apache/camel/component/http4/helper/HttpHelper.java Mon Dec 20 06:58:28 2010 @@ -0,0 +1,39 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.camel.component.http4.helper; + +import org.apache.camel.Exchange; +import org.apache.camel.converter.IOConverter; + +public final class HttpHelper { + + private HttpHelper() { + // Helper class + } + + public static void setCharsetFromContentType(String contentType, Exchange exchange) { + if (contentType != null) { + // find the charset and set it to the Exchange + int index = contentType.indexOf("charset="); + if (index > 0) { + String charset = contentType.substring(index + 8); + exchange.setProperty(Exchange.CHARSET_NAME, IOConverter.normalizeCharset(charset)); + } + } + } + +} Propchange: camel/trunk/components/camel-http4/src/main/java/org/apache/camel/component/http4/helper/HttpHelper.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-http4/src/main/java/org/apache/camel/component/http4/helper/HttpHelper.java ------------------------------------------------------------------------------ svn:keywords = Rev Date