1 package com.atlassian.sal.api.features;
2
3 /**
4 * The scope of an enabled feature key.
5 *
6 * @since 2.10
7 */
8 public enum FeatureKeyScope {
9 /**
10 * Aka <em>system feature</em>, cannot be disabled during runtime.
11 */
12 ALL_USERS_READ_ONLY,
13
14 /**
15 * Aka <em>site wide feature</em>, can be disabled during runtime.
16 */
17 ALL_USERS,
18
19 /**
20 * The feature is enabled for the current user only.
21 */
22 CURRENT_USER_ONLY
23 }