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 when the plugin has been refreshed with no user interaction.
8    *
9    * @see com.atlassian.plugin.event.events
10   * @since 2.2.0
11   */
12  @PublicApi
13  public class PluginRefreshedEvent extends PluginEvent {
14      public PluginRefreshedEvent(final Plugin plugin) {
15          super(plugin);
16      }
17  }