Interface AddonFinderService
@NonNullByDefault
public interface AddonFinderService
Classes implementing this interface can be registered as an OSGi service in order to provide functionality for
managing add-on suggestion finders, such as installing and uninstalling them.
- Author:
- Mark Herwege - Initial contribution
-
Method Summary
-
Method Details
-
install
Installs the given add-on suggestion finder. This can be a long running process. The framework makes sure that this is called within a separate thread.- Parameters:
id
- the id of the add-on suggestion finder to install
-
uninstall
Uninstalls the given add-on suggestion finder. This can be a long running process. The framework makes sure that this is called within a separate thread.- Parameters:
id
- the id of the add-on suggestion finder to uninstall
-