View Javadoc

1   package com.atlassian.plugin.event.events;
2   
3   import com.atlassian.plugin.Plugin;
4   
5   /**
6    * Event fired when the plugin has been refreshed with no user interaction
7    *
8    * @since 2.2.0
9    */
10  public class PluginRefreshedEvent
11  {
12      private final Plugin plugin;
13  
14      public PluginRefreshedEvent(Plugin plugin)
15      {
16          this.plugin = plugin;
17      }
18  
19      public Plugin getPlugin()
20      {
21          return plugin;
22      }
23  }