View Javadoc
1   package com.atlassian.plugin.event.events;
2   
3   import com.atlassian.plugin.ModuleDescriptor;
4   
5   /**
6    * Event fired when a plugin module is about to be disabled, which can also happen when its
7    * plugin is about to be disabled or uninstalled.
8    *
9    * @see com.atlassian.plugin.event.events
10   * @since 3.0.5
11   * @deprecated since 4.0.0. Use {@link PluginModuleDisablingEvent} instead.
12   */
13  @Deprecated
14  public class BeforePluginModuleDisabledEvent extends PluginModulePersistentEvent {
15      public BeforePluginModuleDisabledEvent(final ModuleDescriptor<?> module, final boolean persistent) {
16          super(module, persistent);
17      }
18  }