View Javadoc
1   package com.atlassian.plugin.event.events;
2   
3   import com.atlassian.annotations.PublicApi;
4   import com.atlassian.plugin.Plugin;
5   
6   /**
7    * Event fired before a plugin is upgraded at runtime.
8    * <p>
9    * The plugin of this event is the old plugin, and it is fired before the old plugin is removed from the system.
10   *
11   * @see com.atlassian.plugin.event.events
12   * @since 4.0.0
13   */
14  @PublicApi
15  public class PluginUpgradingEvent extends PluginEvent {
16      public PluginUpgradingEvent(final Plugin plugin) {
17          super(plugin);
18      }
19  }