com.atlassian.jira.security
Class DefaultGlobalPermissionManager

java.lang.Object
  extended by com.atlassian.jira.security.DefaultGlobalPermissionManager
All Implemented Interfaces:
GlobalPermissionManager

public class DefaultGlobalPermissionManager
extends Object
implements GlobalPermissionManager


Constructor Summary
DefaultGlobalPermissionManager()
           
 
Method Summary
 boolean addPermission(int permissionId, String group)
          Adds a global permission
 Collection getGroupNames(int permissionId)
          Retrieve all the group names with this permission.
 Collection getGroups(int permissionId)
          Retrieve all the groups with this permission
 Collection getPermissions(int permissionType)
          Retrieve all the global permissions of a particular type
 boolean hasPermission(int permissionId)
          Check if a global anonymous permission exists
 boolean hasPermission(int permissionId, User u)
          Check if a global permission for one of the users groups exists
protected  boolean hasPermission(JiraPermission jiraPermission)
           
 boolean removePermission(int permissionId, String group)
          Removes a global permission
 boolean removePermissions(String group)
          Remove a global permissions that the group passed in
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DefaultGlobalPermissionManager

public DefaultGlobalPermissionManager()
Method Detail

addPermission

public boolean addPermission(int permissionId,
                             String group)
                      throws CreateException
Adds a global permission

Specified by:
addPermission in interface GlobalPermissionManager
Parameters:
permissionId - must be a global permission type
group - can be null if it is anyone permission
Returns:
True if the permission was added
Throws:
CreateException

getPermissions

public Collection getPermissions(int permissionType)
Description copied from interface: GlobalPermissionManager
Retrieve all the global permissions of a particular type

Specified by:
getPermissions in interface GlobalPermissionManager
Parameters:
permissionType - must be a global permission
Returns:
Collection of JiraPermission, must never return null

removePermission

public boolean removePermission(int permissionId,
                                String group)
                         throws RemoveException
Removes a global permission

Specified by:
removePermission in interface GlobalPermissionManager
Parameters:
permissionId - must be a global permission type
group - can be null if it is anyone permission
Returns:
True if the permission was removed, false if not (usually it didn't exist)
Throws:
RemoveException

removePermissions

public boolean removePermissions(String group)
                          throws RemoveException
Remove a global permissions that the group passed in

Specified by:
removePermissions in interface GlobalPermissionManager
Parameters:
group - must NOT be null and the group must exist
Returns:
True all the permissions are removed
Throws:
RemoveException - if the permission removal fails

hasPermission

public boolean hasPermission(int permissionId)
Check if a global anonymous permission exists

Specified by:
hasPermission in interface GlobalPermissionManager
Parameters:
permissionId - must be global permission
Returns:
true the anonymous user has the permission of given type, false otherwise
See Also:
GlobalPermissionManager.hasPermission(int, com.opensymphony.user.User)

hasPermission

public boolean hasPermission(int permissionId,
                             User u)
Check if a global permission for one of the users groups exists

Specified by:
hasPermission in interface GlobalPermissionManager
Parameters:
permissionId - must be a global permission
u - must not be null
Returns:
true if the given user has the permission of given type, otherwise false
See Also:
GlobalPermissionManager.hasPermission(int), PermissionManager.hasPermission(int, com.opensymphony.user.User)

getGroups

public Collection getGroups(int permissionId)
Retrieve all the groups with this permission

Specified by:
getGroups in interface GlobalPermissionManager
Parameters:
permissionId - must be a global permission
Returns:
a collection of Group objects, never null

getGroupNames

public Collection getGroupNames(int permissionId)
Description copied from interface: GlobalPermissionManager
Retrieve all the group names with this permission. Only group names directly associated with the permission will be returned.

Specified by:
getGroupNames in interface GlobalPermissionManager
Parameters:
permissionId - must be a global permission
Returns:
a Collection of String, group names, will never be null.

hasPermission

protected boolean hasPermission(JiraPermission jiraPermission)


Copyright © 2002-2008 Atlassian. All Rights Reserved.