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

com.github.dynamicextensionsalfresco.osgi.ServicePropertiesProvider 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 java.util.Map;

/**
 * Strategy for providing additional properties about an OSGi Service when it is registered by a
 * {@link BundleContextRegistrar}.
 * 
 * @author Laurens Fridael
 * 
 */
public interface ServicePropertiesProvider {

	/**
	 * Obtains properties for a given service.
	 * 
	 * @param service
	 *            The service.
	 * @param serviceNames
	 *            The names under which it will be registered.
	 * @return The service properties or null if none could be determined.
	 */
	Map getServiceProperties(Object service, List serviceNames);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy