![JAR search and dependency download from the Maven repository](/logo.png)
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