All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.camunda.bpm.camel.blueprint.OsgiHelper Maven / Gradle / Ivy

The newest version!
package org.camunda.bpm.camel.blueprint;

import org.osgi.framework.BundleContext;
import org.osgi.framework.FrameworkUtil;
import org.osgi.framework.ServiceReference;

public class OsgiHelper {

	@SuppressWarnings("unchecked")
	public static  T getService(Class clazz) {
		BundleContext context = FrameworkUtil.getBundle(clazz).getBundleContext();
		ServiceReference serviceReference = context.getServiceReference(clazz.getName());
		return (T)context.getService(serviceReference);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy