Return-Path: X-Original-To: apmail-camel-commits-archive@www.apache.org Delivered-To: apmail-camel-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9F6D477CF for ; Tue, 9 Aug 2011 12:07:59 +0000 (UTC) Received: (qmail 72761 invoked by uid 500); 9 Aug 2011 12:07:58 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 72171 invoked by uid 500); 9 Aug 2011 12:07:53 -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 72160 invoked by uid 99); 9 Aug 2011 12:07:52 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Aug 2011 12:07:52 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.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; Tue, 09 Aug 2011 12:07:51 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id EA62C23889B3 for ; Tue, 9 Aug 2011 12:07:31 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1155327 - /camel/trunk/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/cxfbean/CxfBeanEndpoint.java Date: Tue, 09 Aug 2011 12:07:31 -0000 To: commits@camel.apache.org From: ningjiang@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110809120731.EA62C23889B3@eris.apache.org> Author: ningjiang Date: Tue Aug 9 12:07:31 2011 New Revision: 1155327 URL: http://svn.apache.org/viewvc?rev=1155327&view=rev Log: CAMEL-4299 Fixed the CS errors of CxfBeanEndpoint Modified: camel/trunk/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/cxfbean/CxfBeanEndpoint.java Modified: camel/trunk/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/cxfbean/CxfBeanEndpoint.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/cxfbean/CxfBeanEndpoint.java?rev=1155327&r1=1155326&r2=1155327&view=diff ============================================================================== --- camel/trunk/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/cxfbean/CxfBeanEndpoint.java (original) +++ camel/trunk/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/cxfbean/CxfBeanEndpoint.java Tue Aug 9 12:07:31 2011 @@ -34,21 +34,17 @@ import org.apache.cxf.endpoint.Server; import org.apache.cxf.feature.LoggingFeature; import org.apache.cxf.jaxrs.JAXRSServerFactoryBean; import org.apache.cxf.jaxws.JaxWsServerFactoryBean; -import org.apache.cxf.phase.PhaseManager; import org.apache.cxf.transport.ConduitInitiatorManager; import org.apache.cxf.transport.DestinationFactoryManager; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; + /** * CXF Bean Endpoint is a {@link ProcessorEndpoint} which associated with * a {@link CxfBeanDestination}. It delegates the processing of Camel * Exchanges to the associated CxfBeanDestination. * - * @version */ public class CxfBeanEndpoint extends ProcessorEndpoint implements HeaderFilterStrategyAware { - private static final Logger LOG = LoggerFactory.getLogger(CxfBeanEndpoint.class); private static final String URI_PREFIX = "cxfbean"; private Server server; private Bus bus;