public enum ProjectAction extends Enum<ProjectAction>
Enum Constant and Description |
---|
EDIT_PROJECT_CONFIG
Able to configure the project specific configuration.
|
EDIT_PROJECT_KEY
Able to configure the project specific configuration with the project key.
|
VIEW_ISSUES
Able to view the issues for the passed project.
|
VIEW_PROJECT
The user is able to see the project.
|
Modifier and Type | Method and Description |
---|---|
String |
getErrorKey() |
int[] |
getPermissions() |
boolean |
hasPermission(PermissionManager manager,
ApplicationUser user,
Project project) |
static ProjectAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProjectAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProjectAction VIEW_PROJECT
public static final ProjectAction VIEW_ISSUES
public static final ProjectAction EDIT_PROJECT_CONFIG
public static final ProjectAction EDIT_PROJECT_KEY
public static ProjectAction[] values()
for (ProjectAction c : ProjectAction.values()) System.out.println(c);
public static ProjectAction 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 nullpublic int[] getPermissions()
public String getErrorKey()
public boolean hasPermission(PermissionManager manager, ApplicationUser user, Project project)
Copyright © 2002-2016 Atlassian. All Rights Reserved.