com.atlassian.jira.permission
Enum Permission

java.lang.Object
  extended by java.lang.Enum<Permission>
      extended by com.atlassian.jira.permission.Permission
All Implemented Interfaces:
Serializable, Comparable<Permission>

Deprecated. Use PermissionManager, GlobalPermissionManager. Since v6.3.

@Deprecated
public enum Permission
extends Enum<Permission>

Since v6.2.


Enum Constant Summary
ADMINISTER
          Deprecated.  
ASSIGN_ISSUE
          Deprecated.  
ASSIGNABLE_USER
          Deprecated.  
ATTACHMENT_DELETE_ALL
          Deprecated.  
ATTACHMENT_DELETE_OWN
          Deprecated.  
BROWSE
          Deprecated.  
BULK_CHANGE
          Deprecated.  
CLOSE_ISSUE
          Deprecated.  
COMMENT_DELETE_ALL
          Deprecated.  
COMMENT_DELETE_OWN
          Deprecated.  
COMMENT_EDIT_ALL
          Deprecated.  
COMMENT_EDIT_OWN
          Deprecated.  
COMMENT_ISSUE
          Deprecated.  
CREATE_ATTACHMENT
          Deprecated.  
CREATE_ISSUE
          Deprecated.  
CREATE_SHARED_OBJECTS
          Deprecated.  
DELETE_ISSUE
          Deprecated.  
EDIT_ISSUE
          Deprecated.  
LINK_ISSUE
          Deprecated.  
MANAGE_GROUP_FILTER_SUBSCRIPTIONS
          Deprecated.  
MANAGE_WATCHER_LIST
          Deprecated.  
MODIFY_REPORTER
          Deprecated.  
MOVE_ISSUE
          Deprecated.  
PROJECT_ADMIN
          Deprecated.  
RESOLVE_ISSUE
          Deprecated.  
SCHEDULE_ISSUE
          Deprecated.  
SET_ISSUE_SECURITY
          Deprecated.  
SYSTEM_ADMIN
          Deprecated.  
TRANSITION_ISSUE
          Deprecated.  
USE
          Deprecated.  
USER_PICKER
          Deprecated.  
VIEW_VERSION_CONTROL
          Deprecated.  
VIEW_VOTERS_AND_WATCHERS
          Deprecated.  
VIEW_WORKFLOW_READONLY
          Deprecated.  
WORK_ISSUE
          Deprecated.  
WORKLOG_DELETE_ALL
          Deprecated.  
WORKLOG_DELETE_OWN
          Deprecated.  
WORKLOG_EDIT_ALL
          Deprecated.  
WORKLOG_EDIT_OWN
          Deprecated.  
 
Method Summary
 String getDescription()
          Deprecated. This method returns the description of the permission in user selected language.
 String getDescriptionKey()
          Deprecated.  
 int getId()
          Deprecated.  
 String getName()
          Deprecated. This method returns the name of the permission in English (ignoring user locale).
 String getNameKey()
          Deprecated.  
static Permission valueOf(String name)
          Deprecated. Returns the enum constant of this type with the specified name.
static Permission[] values()
          Deprecated. Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ADMINISTER

public static final Permission ADMINISTER
Deprecated. 

USE

public static final Permission USE
Deprecated. 

SYSTEM_ADMIN

public static final Permission SYSTEM_ADMIN
Deprecated. 

CREATE_SHARED_OBJECTS

public static final Permission CREATE_SHARED_OBJECTS
Deprecated. 

MANAGE_GROUP_FILTER_SUBSCRIPTIONS

public static final Permission MANAGE_GROUP_FILTER_SUBSCRIPTIONS
Deprecated. 

BULK_CHANGE

public static final Permission BULK_CHANGE
Deprecated. 

USER_PICKER

public static final Permission USER_PICKER
Deprecated. 

PROJECT_ADMIN

public static final Permission PROJECT_ADMIN
Deprecated. 

BROWSE

public static final Permission BROWSE
Deprecated. 

VIEW_VERSION_CONTROL

public static final Permission VIEW_VERSION_CONTROL
Deprecated. 

VIEW_WORKFLOW_READONLY

public static final Permission VIEW_WORKFLOW_READONLY
Deprecated. 

CREATE_ISSUE

public static final Permission CREATE_ISSUE
Deprecated. 

EDIT_ISSUE

public static final Permission EDIT_ISSUE
Deprecated. 

ASSIGN_ISSUE

public static final Permission ASSIGN_ISSUE
Deprecated. 

RESOLVE_ISSUE

public static final Permission RESOLVE_ISSUE
Deprecated. 

DELETE_ISSUE

public static final Permission DELETE_ISSUE
Deprecated. 

ASSIGNABLE_USER

public static final Permission ASSIGNABLE_USER
Deprecated. 

CLOSE_ISSUE

public static final Permission CLOSE_ISSUE
Deprecated. 

TRANSITION_ISSUE

public static final Permission TRANSITION_ISSUE
Deprecated. 

LINK_ISSUE

public static final Permission LINK_ISSUE
Deprecated. 

MOVE_ISSUE

public static final Permission MOVE_ISSUE
Deprecated. 

SET_ISSUE_SECURITY

public static final Permission SET_ISSUE_SECURITY
Deprecated. 

SCHEDULE_ISSUE

public static final Permission SCHEDULE_ISSUE
Deprecated. 

MODIFY_REPORTER

public static final Permission MODIFY_REPORTER
Deprecated. 

VIEW_VOTERS_AND_WATCHERS

public static final Permission VIEW_VOTERS_AND_WATCHERS
Deprecated. 

MANAGE_WATCHER_LIST

public static final Permission MANAGE_WATCHER_LIST
Deprecated. 

COMMENT_ISSUE

public static final Permission COMMENT_ISSUE
Deprecated. 

COMMENT_EDIT_ALL

public static final Permission COMMENT_EDIT_ALL
Deprecated. 

COMMENT_EDIT_OWN

public static final Permission COMMENT_EDIT_OWN
Deprecated. 

COMMENT_DELETE_ALL

public static final Permission COMMENT_DELETE_ALL
Deprecated. 

COMMENT_DELETE_OWN

public static final Permission COMMENT_DELETE_OWN
Deprecated. 

CREATE_ATTACHMENT

public static final Permission CREATE_ATTACHMENT
Deprecated. 

ATTACHMENT_DELETE_ALL

public static final Permission ATTACHMENT_DELETE_ALL
Deprecated. 

ATTACHMENT_DELETE_OWN

public static final Permission ATTACHMENT_DELETE_OWN
Deprecated. 

WORK_ISSUE

public static final Permission WORK_ISSUE
Deprecated. 

WORKLOG_EDIT_OWN

public static final Permission WORKLOG_EDIT_OWN
Deprecated. 

WORKLOG_EDIT_ALL

public static final Permission WORKLOG_EDIT_ALL
Deprecated. 

WORKLOG_DELETE_OWN

public static final Permission WORKLOG_DELETE_OWN
Deprecated. 

WORKLOG_DELETE_ALL

public static final Permission WORKLOG_DELETE_ALL
Deprecated. 
Method Detail

values

public static Permission[] values()
Deprecated. 
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (Permission c : Permission.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Permission valueOf(String name)
Deprecated. 
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

getId

public int getId()
Deprecated. 

getName

public String getName()
Deprecated. 
This method returns the name of the permission in English (ignoring user locale).

Returns:
name of the permission

getNameKey

public String getNameKey()
Deprecated. 

getDescription

public String getDescription()
Deprecated. 
This method returns the description of the permission in user selected language.

Returns:
description of the permission

getDescriptionKey

public String getDescriptionKey()
Deprecated. 


Copyright © 2002-2014 Atlassian. All Rights Reserved.