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