public class IssueSecurityLevelManagerImpl extends Object implements IssueSecurityLevelManager
Modifier and Type | Field and Description |
---|---|
protected org.apache.log4j.Logger |
log |
Constructor and Description |
---|
IssueSecurityLevelManagerImpl(IssueSecuritySchemeManager issueSecuritySchemeManager,
SecurityTypeManager securityTypeManager,
ProjectManager projectManager,
UserManager userManager,
UserKeyService userKeyService,
PermissionManager permissionManager,
EntityEngine entityEngine,
com.atlassian.cache.CacheManager cacheManager,
QueryDslAccessor queryDslAccessor,
ApplicationProperties applicationProperties) |
Modifier and Type | Method and Description |
---|---|
void |
clearProjectLevels(Project project)
Clears the User security Level Map.
|
void |
clearUsersLevels()
Clears the User security Level Map.
|
IssueSecurityLevel |
createIssueSecurityLevel(IssueSecurityLevel level)
Creates an Issue Security Level with the same properties as in provided Issue Security Level.
|
IssueSecurityLevel |
createIssueSecurityLevel(long schemeId,
String name,
String description)
Creates an Issue Security Level with the given properties.
|
void |
deleteSecurityLevel(Long levelId)
Deletes the given Issue Security Level and any child permissions.
|
Collection<IssueSecurityLevel> |
getAllIssueSecurityLevels()
Get all the different levels of security across all schemes.
|
Collection<org.ofbiz.core.entity.GenericValue> |
getAllSecurityLevels()
Get all the different levels of security across all schemes.
|
Collection<IssueSecurityLevel> |
getAllSecurityLevelsForUser(ApplicationUser user)
Get the different levels of security that the user can see across all projects.
|
Collection<org.ofbiz.core.entity.GenericValue> |
getAllUsersSecurityLevels(ApplicationUser user)
Get the different levels of security that the user can see across all projects.
|
Long |
getDefaultSecurityLevel(Project project)
Returns the default Security Level as defined in the Issue Security Level scheme for the given project.
|
Long |
getIssueCount(Long issueSecurityLevelId,
Long projectId)
Get the count of issues at the given security level for a project.
|
org.ofbiz.core.entity.GenericValue |
getIssueSecurity(Long id)
Returns the IssueSecurityLevel with the given ID.
|
String |
getIssueSecurityDescription(Long id) |
org.ofbiz.core.entity.GenericValue |
getIssueSecurityLevel(Long id)
Returns the IssueSecurityLevel with the given ID.
|
List<IssueSecurityLevel> |
getIssueSecurityLevels(long schemeId)
Returns the list of Security Levels for the given Issue Security Level Scheme.
|
Collection<IssueSecurityLevel> |
getIssueSecurityLevelsByName(String securityLevelName)
Get the different levels of security that have the specified name.
|
String |
getIssueSecurityName(Long id)
Get the name of the issue security
|
Long |
getSchemeDefaultSecurityLevel(org.ofbiz.core.entity.GenericValue project)
Returns the default Security Level as defined in the Issue Security Level scheme for the given project.
|
List<org.ofbiz.core.entity.GenericValue> |
getSchemeIssueSecurityLevels(Long schemeId)
Returns the list of Security Levels for the given Issue Security Level Scheme.
|
IssueSecurityLevel |
getSecurityLevel(long id)
Returns the IssueSecurityLevel with the given ID.
|
IssueSecurityLevel |
getSecurityLevelByNameAndSchema(String securityLevelName,
Long schemaId)
Get the level with specified name and schemaId.
|
Collection<org.ofbiz.core.entity.GenericValue> |
getSecurityLevelsByName(String securityLevelName)
Get the different levels of security that have the specified name.
|
Collection<IssueSecurityLevel> |
getSecurityLevelsForUserByName(ApplicationUser user,
String securityLevelName)
Get the different levels of security that a user can see that have the specified name.
|
List<org.ofbiz.core.entity.GenericValue> |
getUsersSecurityLevels(org.ofbiz.core.entity.GenericValue entity,
ApplicationUser user)
Get the different levels of security that can be set for this issue.
|
List<IssueSecurityLevel> |
getUsersSecurityLevels(Issue issue,
ApplicationUser user)
Get the different levels of security that can be set for this issue.
|
List<IssueSecurityLevel> |
getUsersSecurityLevels(Project project,
ApplicationUser user)
Get the different levels of security that can be set for an issue created in this project.
|
Collection<org.ofbiz.core.entity.GenericValue> |
getUsersSecurityLevelsByName(ApplicationUser user,
String securityLevelName)
Get the different levels of security that a user can see that have the specified name.
|
void |
onClearCache(ClearCacheEvent event) |
void |
onEvent(IssueSecuritySchemeDeletedEvent event) |
boolean |
schemeIssueSecurityExists(Long id)
Checks to see if the issue security exists
|
IssueSecurityLevel |
updateIssueSecurityLevel(IssueSecurityLevel issueSecurityLevel)
Updates the name and/or description of security level.
|
public IssueSecurityLevelManagerImpl(IssueSecuritySchemeManager issueSecuritySchemeManager, SecurityTypeManager securityTypeManager, ProjectManager projectManager, UserManager userManager, UserKeyService userKeyService, PermissionManager permissionManager, EntityEngine entityEngine, com.atlassian.cache.CacheManager cacheManager, QueryDslAccessor queryDslAccessor, ApplicationProperties applicationProperties)
@EventListener public void onClearCache(ClearCacheEvent event)
@EventListener public void onEvent(IssueSecuritySchemeDeletedEvent event)
public List<org.ofbiz.core.entity.GenericValue> getSchemeIssueSecurityLevels(Long schemeId)
IssueSecurityLevelManager
getSchemeIssueSecurityLevels
in interface IssueSecurityLevelManager
schemeId
- ID of the Issue Security Level Scheme.public List<IssueSecurityLevel> getIssueSecurityLevels(long schemeId)
IssueSecurityLevelManager
getIssueSecurityLevels
in interface IssueSecurityLevelManager
schemeId
- ID of the Issue Security Level Scheme.@Nullable public org.ofbiz.core.entity.GenericValue getIssueSecurity(@Nonnull Long id)
IssueSecurityLevelManager
getIssueSecurity
in interface IssueSecurityLevelManager
id
- the IDpublic IssueSecurityLevel getSecurityLevel(long id)
IssueSecurityLevelManager
getSecurityLevel
in interface IssueSecurityLevelManager
id
- the IDpublic IssueSecurityLevel createIssueSecurityLevel(long schemeId, String name, String description)
IssueSecurityLevelManager
createIssueSecurityLevel
in interface IssueSecurityLevelManager
schemeId
- The Issue security scheme that this level belongs to.name
- The name of the new leveldescription
- an optional descriptionpublic IssueSecurityLevel getSecurityLevelByNameAndSchema(String securityLevelName, Long schemaId)
IssueSecurityLevelManager
getSecurityLevelByNameAndSchema
in interface IssueSecurityLevelManager
securityLevelName
- the name of the security level.schemaId
- the id of security schema.public IssueSecurityLevel createIssueSecurityLevel(IssueSecurityLevel level)
IssueSecurityLevelManager
createIssueSecurityLevel
in interface IssueSecurityLevelManager
level
- The Issue security level to be created.public IssueSecurityLevel updateIssueSecurityLevel(IssueSecurityLevel issueSecurityLevel)
IssueSecurityLevelManager
updateIssueSecurityLevel
in interface IssueSecurityLevelManager
issueSecurityLevel
- the level to updatepublic boolean schemeIssueSecurityExists(Long id)
schemeIssueSecurityExists
in interface IssueSecurityLevelManager
id
- The security Idpublic String getIssueSecurityName(Long id)
getIssueSecurityName
in interface IssueSecurityLevelManager
id
- The security Idpublic String getIssueSecurityDescription(Long id)
getIssueSecurityDescription
in interface IssueSecurityLevelManager
public List<org.ofbiz.core.entity.GenericValue> getUsersSecurityLevels(org.ofbiz.core.entity.GenericValue entity, ApplicationUser user) throws org.ofbiz.core.entity.GenericEntityException
When editing an Issue, then you would pass in the GenericValue for the Issue. When creating an Issue, the project is passed in.
getUsersSecurityLevels
in interface IssueSecurityLevelManager
entity
- This is the issue or the project that the security is being checked foruser
- The user used for the security checkorg.ofbiz.core.entity.GenericEntityException
public List<IssueSecurityLevel> getUsersSecurityLevels(Issue issue, ApplicationUser user)
IssueSecurityLevelManager
IssueSecurityLevelManager.getUsersSecurityLevels(com.atlassian.jira.project.Project, ApplicationUser)
.getUsersSecurityLevels
in interface IssueSecurityLevelManager
issue
- This is the issue that the security is being checked foruser
- The user used for the security checkIssueSecurityLevelManager.getUsersSecurityLevels(com.atlassian.jira.project.Project, ApplicationUser)
public List<IssueSecurityLevel> getUsersSecurityLevels(Project project, ApplicationUser user)
IssueSecurityLevelManager
IssueSecurityLevelManager.getUsersSecurityLevels(Issue, ApplicationUser)
.getUsersSecurityLevels
in interface IssueSecurityLevelManager
project
- the project that the security is being checked foruser
- The user used for the security checkIssueSecurityLevelManager.getUsersSecurityLevels(com.atlassian.jira.issue.Issue, ApplicationUser)
public Collection<org.ofbiz.core.entity.GenericValue> getAllUsersSecurityLevels(ApplicationUser user) throws org.ofbiz.core.entity.GenericEntityException
IssueSecurityLevelManager
getAllUsersSecurityLevels
in interface IssueSecurityLevelManager
user
- The user used for the security checkorg.ofbiz.core.entity.GenericEntityException
- Exception in the OFBiz persistence layer.@Nonnull public Collection<IssueSecurityLevel> getAllSecurityLevelsForUser(ApplicationUser user)
IssueSecurityLevelManager
getAllSecurityLevelsForUser
in interface IssueSecurityLevelManager
user
- The user used for the security checkpublic Collection<org.ofbiz.core.entity.GenericValue> getAllSecurityLevels() throws org.ofbiz.core.entity.GenericEntityException
IssueSecurityLevelManager
getAllSecurityLevels
in interface IssueSecurityLevelManager
org.ofbiz.core.entity.GenericEntityException
- Exception in the OFBiz persistence layer.public Collection<IssueSecurityLevel> getAllIssueSecurityLevels()
IssueSecurityLevelManager
getAllIssueSecurityLevels
in interface IssueSecurityLevelManager
public Collection<org.ofbiz.core.entity.GenericValue> getUsersSecurityLevelsByName(ApplicationUser user, String securityLevelName) throws org.ofbiz.core.entity.GenericEntityException
IssueSecurityLevelManager
getUsersSecurityLevelsByName
in interface IssueSecurityLevelManager
user
- the usersecurityLevelName
- the name of the security level.org.ofbiz.core.entity.GenericEntityException
- Exception in the OFBiz persistence layer.public Collection<IssueSecurityLevel> getSecurityLevelsForUserByName(ApplicationUser user, String securityLevelName)
IssueSecurityLevelManager
getSecurityLevelsForUserByName
in interface IssueSecurityLevelManager
user
- the usersecurityLevelName
- the name of the security level.public Collection<org.ofbiz.core.entity.GenericValue> getSecurityLevelsByName(String securityLevelName) throws org.ofbiz.core.entity.GenericEntityException
IssueSecurityLevelManager
getSecurityLevelsByName
in interface IssueSecurityLevelManager
securityLevelName
- the name of the security level.org.ofbiz.core.entity.GenericEntityException
- Exception in the OFBiz persistence layer.public Collection<IssueSecurityLevel> getIssueSecurityLevelsByName(String securityLevelName)
IssueSecurityLevelManager
getIssueSecurityLevelsByName
in interface IssueSecurityLevelManager
securityLevelName
- the name of the security level.public Long getSchemeDefaultSecurityLevel(org.ofbiz.core.entity.GenericValue project) throws org.ofbiz.core.entity.GenericEntityException
IssueSecurityLevelManager
getSchemeDefaultSecurityLevel
in interface IssueSecurityLevelManager
project
- the Projectorg.ofbiz.core.entity.GenericEntityException
- Exception in the OFBiz persistence layer.public Long getDefaultSecurityLevel(Project project)
IssueSecurityLevelManager
getDefaultSecurityLevel
in interface IssueSecurityLevelManager
project
- the Projectpublic org.ofbiz.core.entity.GenericValue getIssueSecurityLevel(Long id)
IssueSecurityLevelManager
getIssueSecurityLevel
in interface IssueSecurityLevelManager
id
- the IDpublic void deleteSecurityLevel(Long levelId)
IssueSecurityLevelManager
deleteSecurityLevel
in interface IssueSecurityLevelManager
levelId
- Issue Security Level IDpublic void clearUsersLevels()
clearUsersLevels
in interface IssueSecurityLevelManager
public void clearProjectLevels(Project project)
clearProjectLevels
in interface IssueSecurityLevelManager
public Long getIssueCount(@Nullable Long issueSecurityLevelId, @Nonnull Long projectId)
IssueSecurityLevelManager
getIssueCount
in interface IssueSecurityLevelManager
issueSecurityLevelId
- Issue Security LevelprojectId
- ProjectCopyright © 2002-2021 Atlassian. All Rights Reserved.