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

com.github.dynamicextensionsalfresco.osgi.webscripts.SearchPathRegistry 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.webscripts;

import org.springframework.extensions.webscripts.SearchPath;
import org.springframework.extensions.webscripts.Store;

/**
 * Defines operations for managing {@link Store}s in a {@link SearchPath}. This interface is intended to be exposed as
 * an OSGi service to let Bundles register and unregister {@link Store}s.
 * 
 * @author Laurens Fridael
 * 
 */
public interface SearchPathRegistry {

	void addStore(Store store);

	void removeStore(Store store);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy