com.github.dynamicextensionsalfresco.osgi.BundleContextRegistrar Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alfresco-integration Show documentation
Show all versions of alfresco-integration Show documentation
Adds an OSGi container to alfresco repository supporting dynamic code reloading, classpath isolation and a bunch of other useful features
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