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 has been disabled
27       */
28      DISABLED,
29  
30      /**
31       * The plugin has been uninstalled and should be unavailable
32       */
33      UNINSTALLED
34  }