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 /**
11 * Aka <em>system feature</em>, cannot be disabled during runtime.
12 */
13 ALL_USERS_READ_ONLY,
14
15 /**
16 * Aka <em>site wide feature</em>, can be disabled during runtime.
17 */
18 ALL_USERS,
19
20 /**
21 * The feature is enabled for the current user only.
22 */
23 CURRENT_USER_ONLY
24 }