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

com.github.dynamicextensionsalfresco.osgi.BundleContextRegistrar Maven / Gradle / Ivy

Go to download

Adds an OSGi container to alfresco repository supporting dynamic code reloading, classpath isolation and a bunch of other useful features

There is a newer version: 3.1.0
Show newest version
package com.github.dynamicextensionsalfresco.osgi;

import java.util.List;

import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceRegistration;

/**
 * Strategy for registering services in a {@link BundleContext}.
 * 
 * @author Laurens Fridael
 * 
 */
public interface BundleContextRegistrar {

	/**
	 * Registers services in a {@link BundleContext} and returns the corresponding {@link ServiceRegistration}s.
	 * 
	 * @param bundleContext
	 * @return The {@link ServiceRegistration}s.
	 */
	List> registerInBundleContext(BundleContext bundleContext);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy