public final enum

PluginRestartState

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.atlassian.plugin.PluginRestartState

Class Overview

The state of the plugin after restart. This value indicates the action that will be performed for plugins that cannot be installed, upgraded, or removed at runtime due to the @RequiresRestart annotation on a used module descriptor.

Summary

Enum Values
PluginRestartState  INSTALL  Indicates an installation will be performed  
PluginRestartState  NONE  Indicates no change upon restart  
PluginRestartState  REMOVE  Indicates the plugin will be removed  
PluginRestartState  UPGRADE  Indicates an upgrade will be performed  
Public Methods
static PluginRestartState valueOf(String name)
final static PluginRestartState[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final PluginRestartState INSTALL

Indicates an installation will be performed

public static final PluginRestartState NONE

Indicates no change upon restart

public static final PluginRestartState REMOVE

Indicates the plugin will be removed

public static final PluginRestartState UPGRADE

Indicates an upgrade will be performed

Public Methods

public static PluginRestartState valueOf (String name)

public static final PluginRestartState[] values ()