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