@PublicApi
public interface FeatureManager
| Modifier and Type | Field and Description |
|---|---|
static String |
SYSTEM_PROPERTY_PREFIX
The prefix used for enabling dark features from the command line.
|
| Modifier and Type | Method and Description |
|---|---|
void |
disableSiteDarkFeature(String feature)
Disables a site-wide feature.
|
void |
disableUserDarkFeature(ApplicationUser user,
String feature)
Disables a feature for a particular user.
|
void |
enableSiteDarkFeature(String feature)
Enables a site-wide feature.
|
void |
enableUserDarkFeature(ApplicationUser user,
String feature)
Enables a feature for a particular User.
|
DarkFeatures |
getDarkFeatures()
Creates
DarkFeatures instances from the PropertySet associated
with the current user. |
DarkFeatures |
getDarkFeaturesForUser(ApplicationUser user) |
Set<String> |
getEnabledFeatureKeys()
Returns a set containing the feature keys of all features that are currently enabled.
|
boolean |
hasSiteEditPermission()
Returns true if the currently logged in user has permission to edit site dark features.
|
boolean |
isEnabled(CoreFeatures feature)
Checks whether
feature is enabled either in the running JIRA instance
or for the current user. |
boolean |
isEnabled(Feature feature)
Checks whether or not the specified feature is enabled.
|
boolean |
isEnabled(String featureKey)
Checks whether feature
featureKey is enabled either in the running JIRA instance
or for the current user. |
boolean |
isEnabledForUser(ApplicationUser user,
String featureKey)
Checks whether a feature with given featureKey is enabled in the running JIRA instance for the given user.
|
boolean |
isOnDemand()
Convenience method equivalent to calling
isEnabled(CoreFeatures.ON_DEMAND). |
static final String SYSTEM_PROPERTY_PREFIX
-Datlassian.darkfeature.com.atlassian.jira.config.FAST_TABS=true as a JVM argument in order to
enable fast tabs.boolean isEnabled(String featureKey)
featureKey is enabled either in the running JIRA instance
or for the current user.featureKey - feature keytrue, if feature identified by featureKey is enabled, false otherwise@Internal boolean isEnabled(CoreFeatures feature)
feature is enabled either in the running JIRA instance
or for the current user. This method should be prefered over
isEnabled(String) for internal feature checks, particularly for
core features that are not user-settable, as it will skip loading the
current user's preferences when possible.feature - the core feature to checktrue if feature is enabled; false otherwise@Internal boolean isEnabled(Feature feature)
isEnabled(String) for internal feature checks,
particularly for core features that are not user-settable, as it will skip
loading the current user's preferences when possible.feature - the feature to checktrue if feature is enabled; false otherwiseSet<String> getEnabledFeatureKeys()
DarkFeatures getDarkFeatures()
DarkFeatures instances from the PropertySet associated
with the current user.boolean isOnDemand()
isEnabled(CoreFeatures.ON_DEMAND).true if this is JIRA OnDemand; false otherwisevoid enableUserDarkFeature(ApplicationUser user, String feature)
FeatureEnabledEvent.
Since JIRA 5.1, this method raises a FeatureEnabledEvent if it is successful.
user - the user to enable the feature forfeature - the feature to enablevoid disableUserDarkFeature(ApplicationUser user, String feature)
Since JIRA 5.1, this method raises a FeatureDisabledEvent if it is successful.
user - the user to disable the feature forfeature - the feature to disablevoid enableSiteDarkFeature(String feature)
Since JIRA 5.1, this method raises a FeatureEnabledEvent if it is successful.
feature - the feature to enablevoid disableSiteDarkFeature(String feature)
Since JIRA 5.1, this method raises a FeatureDisabledEvent if it is successful.
feature - the feature to disableboolean hasSiteEditPermission()
DarkFeatures getDarkFeaturesForUser(@Nullable ApplicationUser user)
user - the user being queried; null represents the anonymous userboolean isEnabledForUser(ApplicationUser user, String featureKey)
user - the user being queriedfeatureKey - feature keytrue, if feature identified by featureKey is enabled, false otherwiseCopyright © 2002-2015 Atlassian. All Rights Reserved.