]> source.dussan.org Git - pf4j.git/commitdiff
make more fields protected in DefaultPluginManager
authorDecebal Suiu <decebal.suiu@gmail.com>
Thu, 17 Sep 2015 10:42:21 +0000 (13:42 +0300)
committerDecebal Suiu <decebal.suiu@gmail.com>
Thu, 17 Sep 2015 10:42:21 +0000 (13:42 +0300)
pf4j/src/main/java/ro/fortsoft/pf4j/DefaultPluginManager.java

index df63571f9b0c084f9e221cea787e97533042b8a4..865bc5f52a6302e5c5d96ed93de53e42e21c5035 100644 (file)
@@ -49,67 +49,67 @@ public class DefaultPluginManager implements PluginManager {
 
     protected File pluginsDirectory;
 
-    private ExtensionFinder extensionFinder;
+    protected ExtensionFinder extensionFinder;
 
-    private PluginDescriptorFinder pluginDescriptorFinder;
+    protected PluginDescriptorFinder pluginDescriptorFinder;
 
-    private PluginClasspath pluginClasspath;
+    protected PluginClasspath pluginClasspath;
 
     /**
      * A map of plugins this manager is responsible for (the key is the 'pluginId').
      */
-    private Map<String, PluginWrapper> plugins;
+    protected Map<String, PluginWrapper> plugins;
 
     /**
      * A map of plugin class loaders (he key is the 'pluginId').
      */
-    private Map<String, PluginClassLoader> pluginClassLoaders;
+    protected Map<String, PluginClassLoader> pluginClassLoaders;
 
     /**
      * A relation between 'pluginPath' and 'pluginId'
      */
-    private Map<String, String> pathToIdMap;
+    protected Map<String, String> pathToIdMap;
 
     /**
      * A list with unresolved plugins (unresolved dependency).
      */
-    private List<PluginWrapper> unresolvedPlugins;
+    protected List<PluginWrapper> unresolvedPlugins;
 
     /**
      * A list with resolved plugins (resolved dependency).
      */
-    private List<PluginWrapper> resolvedPlugins;
+    protected List<PluginWrapper> resolvedPlugins;
 
     /**
      * A list with started plugins.
      */
-    private List<PluginWrapper> startedPlugins;
+    protected List<PluginWrapper> startedPlugins;
 
     /**
      * The registered {@link PluginStateListener}s.
      */
-    private List<PluginStateListener> pluginStateListeners;
+    protected List<PluginStateListener> pluginStateListeners;
 
     /**
      * Cache value for the runtime mode. No need to re-read it because it wont change at
         * runtime.
      */
-    private RuntimeMode runtimeMode;
+    protected RuntimeMode runtimeMode;
 
     /**
      * The system version used for comparisons to the plugin requires attribute.
      */
-    private Version systemVersion = Version.forIntegers(0, 0, 0);
+    protected Version systemVersion = Version.forIntegers(0, 0, 0);
 
-    private PluginFactory pluginFactory;
-    private ExtensionFactory extensionFactory;
-    private PluginStatusProvider pluginStatusProvider;
-    private DependencyResolver dependencyResolver;
+    protected PluginFactory pluginFactory;
+    protected ExtensionFactory extensionFactory;
+    protected PluginStatusProvider pluginStatusProvider;
+    protected DependencyResolver dependencyResolver;
 
     /**
      * The plugins repository.
      */
-    private PluginRepository pluginRepository;
+    protected PluginRepository pluginRepository;
 
     /**
      * The plugins directory is supplied by System.getProperty("pf4j.pluginsDir", "plugins").