org.apache.camel.component.cxf.cxfbean.CxfBeanEndpoint Maven / Gradle / Ivy
/**
* 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.cxf.cxfbean;
import java.util.ArrayList;
import java.util.List;
import javax.jws.WebService;
import org.apache.camel.component.cxf.common.header.CxfHeaderFilterStrategy;
import org.apache.camel.component.cxf.common.message.CxfMessageMapper;
import org.apache.camel.component.cxf.common.message.DefaultCxfMesssageMapper;
import org.apache.camel.impl.ProcessorEndpoint;
import org.apache.camel.spi.HeaderFilterStrategy;
import org.apache.camel.spi.HeaderFilterStrategyAware;
import org.apache.camel.util.CamelContextHelper;
import org.apache.cxf.Bus;
import org.apache.cxf.BusFactory;
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.transport.ConduitInitiatorManager;
import org.apache.cxf.transport.DestinationFactoryManager;
/**
* CXF Bean Endpoint is a {@link ProcessorEndpoint} which associated with
* a {@link CxfBeanDestination}. It delegates the processing of Camel
* Exchanges to the associated CxfBeanDestination.
*
*/
public class CxfBeanEndpoint extends ProcessorEndpoint implements HeaderFilterStrategyAware {
private static final String URI_PREFIX = "cxfbean";
private Server server;
private Bus bus;
private boolean isSetDefaultBus;
private CxfMessageMapper cxfBeanBinding = new DefaultCxfMesssageMapper();
private HeaderFilterStrategy headerFilterStrategy = new CxfHeaderFilterStrategy();
private boolean loggingFeatureEnabled;
private boolean populateFromClass = true;
private List