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

    Modifier and Type
    Method
    Description
    void
    Installs the given add-on suggestion finder.
    void
    Uninstalls the given add-on suggestion finder.
  • Method Details

    • install

      void install(String id)
      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

      void uninstall(String id)
      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