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 disabled, which can also happen when its
8    * plugin is disabled or uninstalled.
9    *
10   * @see com.atlassian.plugin.event.events
11   * @since 2.2.0
12   */
13  @PublicApi
14  public class PluginModuleDisabledEvent extends PluginModulePersistentEvent {
15      public PluginModuleDisabledEvent(final ModuleDescriptor<?> module, final boolean persistent) {
16          super(module, persistent);
17      }
18  }