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 enabled, which can also happen when its
8    * plugin is about to be enabled or installed.
9    *
10   * @see com.atlassian.plugin.event.events
11   * @since 4.0.0
12   */
13  @PublicApi
14  public class PluginModuleEnablingEvent extends PluginModuleEvent {
15      public PluginModuleEnablingEvent(final ModuleDescriptor<?> module) {
16          super(module);
17      }
18  }