1 package com.atlassian.plugin;
2
3 /**
4 * Load a snapshot of the stored state for plugins.
5 *
6 * @since 5.1.0
7 */
8 public interface StoredPluginStateAccessor {
9 /**
10 * Get the saved activation state of loaded plugins or modules.
11 *
12 * @return the configured activation/deactivation state for plugins in this instance
13 */
14 StoredPluginState get();
15 }