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    * Signifies a plugin module is now available outside the usual installation process.
8    *
9    * @see com.atlassian.plugin.event.events
10   * @since 2.5.0
11   */
12  @PublicApi
13  public class PluginModuleAvailableEvent extends PluginModuleEvent {
14      public PluginModuleAvailableEvent(final ModuleDescriptor module) {
15          super(module);
16      }
17  }