Class PluginLoader

All Implemented Interfaces:
Closeable, AutoCloseable

public class PluginLoader extends URLClassLoader

This class detects and then try to load all builtin or custom Plugins.

  • Field Details Link icon

  • Constructor Details Link icon

    • PluginLoader Link icon

      public PluginLoader()

      The core of the detection and loading

  • Method Details Link icon

    • initInstance Link icon

      public static void initInstance()

      Set the value to the INSTANCE variable, so we can access values everywhere in the code.

    • getResources Link icon

      public Set<String> getResources(Pattern pattern)
      Parameters:
      pattern -

      Returned file names will need to follow this Pattern.

      Returns:

      The path into a Plugin of all files following the provided Pattern.

    • getResourcesInPackage Link icon

      public Set<String> getResourcesInPackage(String pkg)
      Parameters:
      pkg -

      The path of directories the method will use to access wanted files. Sub folders need to be split with a dot.

      Returns:

      The path into a Plugin of all files inside the provided folder.

    • getResources Link icon

      public Set<String> getResources(@Nullable String pkg, @Nullable Pattern pattern)
      Parameters:
      pkg -

      The path of directories the method will use to access wanted files. Sub folders need to be split with a dot.

      pattern -

      Returned file names will need to follow this Pattern.

      Returns:

      The path into a Plugin of all files inside the provided folder following the provided Pattern .

    • getPlugins Link icon

      public Collection<Plugin> getPlugins()
      Returns:

      A List of all loaded plugins. Sorted by plugin weight.

    • getJavaPlugins Link icon

      protected Collection<JavaPlugin> getJavaPlugins()
      Returns:

      A List of all loaded Java plugins. Sorted by plugin weight.

    • getPluginUpdates Link icon

      public Collection<PluginUpdateInfo> getPluginUpdates()
      Returns:

      A list of all plugin updates detected.

    • getPluginModules Link icon

      public Collection<Module> getPluginModules()
      Returns:

      A list of all plugin modules.

    • getFailedPlugins Link icon

      public Collection<PluginLoadFailure> getFailedPlugins()