blob: ecdcfcba51c2b128d5216c4456b1fcd83d693709 [file] [log] [blame]
/*
* 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.blueprint;
import org.apache.camel.blueprint.BlueprintCamelContext;
import org.apache.camel.component.cxf.CxfComponent;
import org.apache.camel.component.cxf.CxfEndpoint;
import org.apache.cxf.BusFactory;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceReference;
import org.osgi.service.blueprint.container.BlueprintContainer;
public class CxfBlueprintEndpoint extends CxfEndpoint {
private BlueprintContainer blueprintContainer;
private BundleContext bundleContext;
private BlueprintCamelContext blueprintCamelContext;
public CxfBlueprintEndpoint(String address, BundleContext context) {
super(address, (CxfComponent)null);
bundleContext = context;
}
@Override
protected void doInit() throws Exception {
if (getCamelContext() == null) {
setCamelContext(blueprintCamelContext);
}
super.doInit();
}
public void destroy() {
// Clean up the BusFactory's defaultBus
// This method is not called magically, blueprint
// needs you to set the destroy-method.
BusFactory.setDefaultBus(null);
BusFactory.setThreadDefaultBus(null);
}
@Override
public void setServiceClass(String n) throws ClassNotFoundException {
setServiceClass(bundleContext.getBundle().loadClass(n));
}
// Package private methods
// -------------------------------------------------------------------------
public BlueprintContainer getBlueprintContainer() {
return blueprintContainer;
}
public void setBlueprintContainer(BlueprintContainer blueprintContainer) {
this.blueprintContainer = blueprintContainer;
}
public BundleContext getBundleContext() {
return bundleContext;
}
public void setBundleContext(BundleContext bundleContext) {
this.bundleContext = bundleContext;
}
public BlueprintCamelContext getBlueprintCamelContext() {
return blueprintCamelContext;
}
public void setBlueprintCamelContext(BlueprintCamelContext blueprintCamelContext) {
this.blueprintCamelContext = blueprintCamelContext;
}
public CxfBlueprintEndpoint getBean() {
return this;
}
}