Interface PermissionQueryCache
- All Known Implementing Classes:
DefaultPermissionQueryCache
Deprecated, for removal: This API element is subject to removal in a future version.
Cache for holding precomputed JQL permission query filter.
See JRASERVER-14980
-
Method Summary
Modifier and TypeMethodDescriptionvoidDeprecated, for removal: This API element is subject to removal in a future version.Disables cache usage for this http request.Optional<org.apache.lucene.search.Query> getPermissionQuery(ApplicationUser searchUser) Deprecated, for removal: This API element is subject to removal in a future version.Gets permission cache for passedsearchUser.Optional<org.apache.lucene.search.Query> getPermissionQuery(ApplicationUser searchUser, Collection<Project> projects) Deprecated, for removal: This API element is subject to removal in a future version.Gets permission cache for passedsearchUserin givenprojects.
-
Method Details
-
getPermissionQuery
Deprecated, for removal: This API element is subject to removal in a future version.Gets permission cache for passedsearchUser.- Parameters:
searchUser- Application user- Returns:
Optionalwith cached permission filter orOptional.empty()if cache is turned off (either by feature flag or for request) or not applicable for this request (eq. only second and following calls could be cached).
-
getPermissionQuery
Optional<org.apache.lucene.search.Query> getPermissionQuery(ApplicationUser searchUser, @Nullable Collection<Project> projects) Deprecated, for removal: This API element is subject to removal in a future version.Gets permission cache for passedsearchUserin givenprojects.- Parameters:
searchUser- Application userprojects- List of projects- Returns:
Optionalwith cached permission filter orOptional.empty()if cache is turned off (either by feature flag or for request) or not applicable for this request (eq. only second and following calls could be cached).
-
disableCacheForRequest
void disableCacheForRequest()Deprecated, for removal: This API element is subject to removal in a future version.Disables cache usage for this http request.
-
PermissionsQueryCache