|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
@PublicApi public interface PermissionManager
PermissionManager responsible for all project specific permissions.
See JIRA Permissions.
For all global Permissions it is recommended to use GlobalPermissionManager
.
Method Summary | |
---|---|
void |
addPermission(int permissionsId,
org.ofbiz.core.entity.GenericValue scheme,
String parameter,
String securityType)
Grants a permission to the system. |
Collection<com.atlassian.crowd.embedded.api.Group> |
getAllGroups(int permissionId,
Project project)
Retrieve all groups that are used in the permission globally and in the project. |
Collection<Project> |
getProjectObjects(int permissionId,
com.atlassian.crowd.embedded.api.User user)
Deprecated. Use getProjects(int, ApplicationUser) instead. Since v6.0. |
Collection<Project> |
getProjects(int permissionId,
ApplicationUser user)
Retrieve a list of project objects this user has the permission for |
Collection<Project> |
getProjects(int permissionId,
ApplicationUser user,
ProjectCategory projectCategory)
Returns the list of projects associated with the specified category, that this user has the permissions for. |
Collection<org.ofbiz.core.entity.GenericValue> |
getProjects(int permissionId,
com.atlassian.crowd.embedded.api.User user)
Deprecated. Please use getProjectObjects(int, com.atlassian.crowd.embedded.api.User) . Since v4.3 |
Collection<org.ofbiz.core.entity.GenericValue> |
getProjects(int permissionId,
com.atlassian.crowd.embedded.api.User user,
org.ofbiz.core.entity.GenericValue category)
Deprecated. Since v5.0: Use getProjects(int, User, ProjectCategory) instead.
Since v6.0: Use getProjects(int, ApplicationUser, ProjectCategory) instead. |
Collection<Project> |
getProjects(int permissionId,
com.atlassian.crowd.embedded.api.User user,
ProjectCategory projectCategory)
Deprecated. Use getProjects(int, ApplicationUser, ProjectCategory) instead. Since v6.0. |
boolean |
hasPermission(int permissionsId,
ApplicationUser user)
Checks to see if this user has the specified permission. |
boolean |
hasPermission(int permissionsId,
org.ofbiz.core.entity.GenericValue entity,
com.atlassian.crowd.embedded.api.User u)
Deprecated. Since v3.11: Use hasPermission(int, Issue, User) for Issues or
hasPermission(int, Project, User) for Projects.
Since v6.0: Use hasPermission(int, Issue, ApplicationUser) for Issues or
hasPermission(int, Project, ApplicationUser) for Projects. |
boolean |
hasPermission(int permissionsId,
org.ofbiz.core.entity.GenericValue project,
com.atlassian.crowd.embedded.api.User user,
boolean issueCreation)
Deprecated. Since v3.11: Use hasPermission(int, Issue, User) for Issues or
hasPermission(int, Project, User, boolean) for Projects.Since v6.0: Use hasPermission(int, Issue, ApplicationUser) for
Issues or hasPermission(int, Project, ApplicationUser, boolean) for
Projects. |
boolean |
hasPermission(int permissionsId,
Issue issue,
ApplicationUser user)
Checks to see if this user has permission to see the specified issue. |
boolean |
hasPermission(int permissionsId,
Issue issue,
com.atlassian.crowd.embedded.api.User user)
Deprecated. Use hasPermission(int, Issue, ApplicationUser) instead. Since v6.0. |
boolean |
hasPermission(int permissionsId,
Project project,
ApplicationUser user)
Checks whether the specified user has a specified permission within the context of a specified project. |
boolean |
hasPermission(int permissionsId,
Project project,
ApplicationUser user,
boolean issueCreation)
Checks whether the specified user has a specified permission within the context of a specified project. |
boolean |
hasPermission(int permissionsId,
Project project,
com.atlassian.crowd.embedded.api.User user)
Deprecated. Use hasPermission(int, Project, ApplicationUser) instead. Since v6.0. |
boolean |
hasPermission(int permissionsId,
Project project,
com.atlassian.crowd.embedded.api.User user,
boolean issueCreation)
Deprecated. Use hasPermission(int, Project, ApplicationUser, boolean) instead. Since v6.0. |
boolean |
hasPermission(int permissionsId,
com.atlassian.crowd.embedded.api.User user)
Deprecated. Use hasPermission(int, ApplicationUser) instead. Since v6.0. |
boolean |
hasProjects(int permissionId,
ApplicationUser user)
Can this user see at least one project with this permission |
boolean |
hasProjects(int permissionId,
com.atlassian.crowd.embedded.api.User user)
Can this user see at least one project with this permission |
void |
removeGroupPermissions(String group)
Remove all permissions that have used this group |
void |
removeUserPermissions(ApplicationUser user)
Remove all permissions that have been assigned to this user |
void |
removeUserPermissions(String username)
Deprecated. Use removeUserPermissions(ApplicationUser) instead. Since v6.0. |
Method Detail |
---|
void addPermission(int permissionsId, org.ofbiz.core.entity.GenericValue scheme, String parameter, String securityType) throws CreateException
permissionsId
- Permissions value. E.g. See Permissions.ADMINISTER
scheme
- If null permission is global otherwise it is added to the schemeparameter
- Used for e.g. group namesecurityType
- e.g. GroupDropdown.DESC
CreateException
- if permission creation failsboolean hasPermission(int permissionsId, com.atlassian.crowd.embedded.api.User user)
hasPermission(int, ApplicationUser)
instead. Since v6.0.
permissionsId
- permission iduser
- user, can be null - anonymous user
GlobalPermissionManager.hasPermission(int, User)
boolean hasPermission(int permissionsId, ApplicationUser user)
permissionsId
- permission iduser
- user, can be null - anonymous user
GlobalPermissionManager.hasPermission(int, User)
boolean hasPermission(int permissionsId, org.ofbiz.core.entity.GenericValue entity, com.atlassian.crowd.embedded.api.User u)
hasPermission(int, Issue, User)
for Issues or
hasPermission(int, Project, User)
for Projects.
hasPermission(int, Issue, ApplicationUser)
for Issues or
hasPermission(int, Project, ApplicationUser)
for Projects.
permissionsId
- Not a global permissionentity
- Not null. Must be either an issue or project.u
- User object, possibly null if JIRA is accessed anonymously
IllegalArgumentException
- If the entity supplied is NOT an issue or project.boolean hasPermission(int permissionsId, Issue issue, com.atlassian.crowd.embedded.api.User user)
hasPermission(int, Issue, ApplicationUser)
instead. Since v6.0.
permissionsId
- Not a global permissionissue
- The Issue (cannot be null)user
- User object, possibly null if JIRA is accessed anonymously
boolean hasPermission(int permissionsId, Issue issue, ApplicationUser user)
permissionsId
- Not a global permissionissue
- The Issue (cannot be null)user
- User object, possibly null if JIRA is accessed anonymously
@Deprecated boolean hasPermission(int permissionsId, Project project, com.atlassian.crowd.embedded.api.User user)
hasPermission(int, Project, ApplicationUser)
instead. Since v6.0.
permissionsId
- A non-global permission, i.e. a permission that is granted via a project contextproject
- The project that is the context of the permission check.user
- The person to perform the permission check for
boolean hasPermission(int permissionsId, Project project, ApplicationUser user)
permissionsId
- A non-global permission, i.e. a permission that is granted via a project contextproject
- The project that is the context of the permission check.user
- The person to perform the permission check for
boolean hasPermission(int permissionsId, Project project, com.atlassian.crowd.embedded.api.User user, boolean issueCreation)
hasPermission(int, Project, ApplicationUser, boolean)
instead. Since v6.0.
permissionsId
- A non-global permission, i.e. a permission that is granted via a project contextproject
- The project that is the context of the permission check.user
- The person to perform the permission check forissueCreation
- Whether this permission is being checked during issue creation
boolean hasPermission(int permissionsId, Project project, ApplicationUser user, boolean issueCreation)
permissionsId
- A non-global permission, i.e. a permission that is granted via a project contextproject
- The project that is the context of the permission check.user
- The person to perform the permission check forissueCreation
- Whether this permission is being checked during issue creation
boolean hasPermission(int permissionsId, org.ofbiz.core.entity.GenericValue project, com.atlassian.crowd.embedded.api.User user, boolean issueCreation)
hasPermission(int, Issue, User)
for Issues or
hasPermission(int, Project, User, boolean)
for Projects.hasPermission(int, Issue, ApplicationUser)
for
Issues or hasPermission(int, Project, ApplicationUser, boolean)
for
Projects.
hasPermission(int,org.ofbiz.core.entity.GenericValue,User)
except
the entity is a project GenericValue
.
permissionsId
- Not a global permissionproject
- Not null.user
- User object, possibly null if JIRA is accessed anonymouslyissueCreation
- Whether this permission is being checked during issue creation
void removeGroupPermissions(String group) throws RemoveException
group
- The name of the group that needs to be removed, must NOT be null and must be a real group
RemoveException
- if permission removal failsvoid removeUserPermissions(String username) throws RemoveException
removeUserPermissions(ApplicationUser)
instead. Since v6.0.
username
- username of the user whose permissions are to be removed
RemoveException
- if permission removal failsvoid removeUserPermissions(ApplicationUser user) throws RemoveException
user
- the user whose permissions are to be removed
RemoveException
boolean hasProjects(int permissionId, com.atlassian.crowd.embedded.api.User user)
permissionId
- must NOT be a global permissionuser
- user being checked
boolean hasProjects(int permissionId, ApplicationUser user)
permissionId
- must NOT be a global permissionuser
- user being checked
Collection<org.ofbiz.core.entity.GenericValue> getProjects(int permissionId, com.atlassian.crowd.embedded.api.User user)
getProjectObjects(int, com.atlassian.crowd.embedded.api.User)
. Since v4.3
permissionId
- must NOT be a global permissionuser
- user
GenericValue
objectsCollection<Project> getProjectObjects(int permissionId, com.atlassian.crowd.embedded.api.User user)
getProjects(int, ApplicationUser)
instead. Since v6.0.
permissionId
- must NOT be a global permissionuser
- user
Project
objectsCollection<Project> getProjects(int permissionId, ApplicationUser user)
permissionId
- must NOT be a global permissionuser
- user
Project
objectsCollection<org.ofbiz.core.entity.GenericValue> getProjects(int permissionId, com.atlassian.crowd.embedded.api.User user, org.ofbiz.core.entity.GenericValue category)
getProjects(int, User, ProjectCategory)
instead.
getProjects(int, ApplicationUser, ProjectCategory)
instead.
permissionId
- permission iduser
- usercategory
- GenericValue representing category
GenericValue
objectsCollection<Project> getProjects(int permissionId, com.atlassian.crowd.embedded.api.User user, ProjectCategory projectCategory)
getProjects(int, ApplicationUser, ProjectCategory)
instead. Since v6.0.
permissionId
- permission iduser
- userprojectCategory
- the ProjectCategory
Collection<Project> getProjects(int permissionId, ApplicationUser user, ProjectCategory projectCategory)
permissionId
- permission iduser
- userprojectCategory
- the ProjectCategory
Collection<com.atlassian.crowd.embedded.api.Group> getAllGroups(int permissionId, Project project)
permissionId
- permission idproject
- project from which to retrieve groups
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |