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