View Javadoc

1   package com.atlassian.plugin;
2   
3   /**
4    * Represents the state of the plugin
5    *
6    * @since 2.2.0
7    */
8   public enum PluginState
9   {
10      /**
11       * The plugin has been installed into the plugin system
12       */
13      INSTALLED,
14  
15      /**
16       * The plugin is in the process of being enabled
17       */
18      ENABLING,
19  
20      /**
21       * The plugin has been enabled
22       */
23      ENABLED,
24  
25      /**
26       * The plugin is in the process of being disabled
27       */
28      DISABLING,
29  
30      /**
31       * The plugin has been disabled
32       */
33      DISABLED,
34  
35      /**
36       * The plugin has been closed and should be unavailable
37       */
38      CLOSED
39  }