1 package com.atlassian.plugin;
2
3 /**
4 * A plugin manager is responsible for retrieving plugins and modules, as well as managing plugin loading and state.
5 *
6 * @deprecated since 2006-09-26 the preferred technique is to use the interfaces that this on e extends directly.
7 *
8 * @see PluginController
9 * @see PluginAccessor
10 * @see PluginSystemLifecycle
11 */
12 @Deprecated
13 public interface PluginManager extends PluginController, PluginAccessor, PluginSystemLifecycle
14 {
15 /**
16 * @deprecated since 2.2 - Please use {@link Descriptor#FILENAME} instead.
17 */
18 @Deprecated
19 public static final String PLUGIN_DESCRIPTOR_FILENAME = PluginAccessor.Descriptor.FILENAME;
20 }