@PublicApi public enum ConfigurationItemAccessLevel extends Enum<ConfigurationItemAccessLevel>
ManagedConfigurationItem
.
Note: this setting does not affect configuration changes made at the API level. It only determines the visibility/access of configuration options within JIRA's administration interface.
ManagedConfigurationItem
,
ManagedConfigurationItemService#doesUserHavePermission(com.atlassian.crowd.embedded.api.User, ManagedConfigurationItem)
Enum Constant and Description |
---|
ADMIN
Administrators or system administrators are permitted to alter the item's configuration from the JIRA administration interface.
|
LOCKED
No user is permitted to alter the item's configuration from the JIRA administration interface.
|
SYS_ADMIN
Only system administrators are permitted to alter the item's configuration from the JIRA administration interface.
|
Modifier and Type | Method and Description |
---|---|
static ConfigurationItemAccessLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigurationItemAccessLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigurationItemAccessLevel LOCKED
public static final ConfigurationItemAccessLevel SYS_ADMIN
public static final ConfigurationItemAccessLevel ADMIN
public static ConfigurationItemAccessLevel[] values()
for (ConfigurationItemAccessLevel c : ConfigurationItemAccessLevel.values()) System.out.println(c);
public static ConfigurationItemAccessLevel valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2002-2019 Atlassian. All Rights Reserved.