Class FieldClausePermissionChecker
java.lang.Object
com.atlassian.jira.jql.permission.FieldClausePermissionChecker
- All Implemented Interfaces:
ClausePermissionChecker
@NonInjectableComponent
public class FieldClausePermissionChecker
extends Object
implements ClausePermissionChecker
A clause permission checker that will check only the users permission to see the field, based on the
configured field configuration schemes.
- Since:
- v4.0
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classThis is a factory so that we don't have a circular dependency on the Field manager.static interface -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanChecks to see that the provided user is able to use the clause.booleanhasPermissionToUseClause(ApplicationUser searcher, Set<FieldLayout> fieldLayouts) Checks to see that the provided user is able to use the clause.
-
Constructor Details
-
FieldClausePermissionChecker
-
-
Method Details
-
hasPermissionToUseClause
Description copied from interface:ClausePermissionCheckerChecks to see that the provided user is able to use the clause. This may be as simple as determining if the user has permission to see the field that the clause represents.- Specified by:
hasPermissionToUseClausein interfaceClausePermissionChecker- Parameters:
user- to check permissions against.- Returns:
- true if the user can use this clause, false otherwise.
-
hasPermissionToUseClause
Description copied from interface:ClausePermissionCheckerChecks to see that the provided user is able to use the clause. This method provides all the FieldLayouts visible to the given user as a shortcut otherwise individual checkers can end up looking this up dozens or even hundreds of times with causes slow downs in our search (see JRADEV-15665).- Specified by:
hasPermissionToUseClausein interfaceClausePermissionChecker- Parameters:
searcher- to check permissions against.fieldLayouts- The field Layouts available to the given user (value of.invalid reference
com.atlassian.jira.issue.fields.FieldManager#getVisibleFieldLayouts(User)- Returns:
- true if the user can use this clause, false otherwise.
-