Interface SubqueryService
- All Known Implementing Classes:
SubqueryServiceImpl
@ExperimentalApi
public interface SubqueryService
Manages subqueries (subfilters), currently only for kanban boards
- Since:
- 7.2
-
Method Summary
Modifier and TypeMethodDescriptiongetSubquery
(com.atlassian.jira.user.ApplicationUser user, RapidView rapidView) Get the sanitised subquery for a boardupdateSubquery
(com.atlassian.jira.user.ApplicationUser user, RapidView rapidView, Subquery subquery) Updates the subquery on the given board with the given subquery.
-
Method Details
-
updateSubquery
@Nonnull ServiceOutcome<Subquery> updateSubquery(com.atlassian.jira.user.ApplicationUser user, RapidView rapidView, Subquery subquery) Updates the subquery on the given board with the given subquery.User permissions to update the subquery and the validity of the subquery itself are validated before performing the update.
-
getSubquery
@Nonnull ServiceOutcome<Subquery> getSubquery(com.atlassian.jira.user.ApplicationUser user, RapidView rapidView) Get the sanitised subquery for a board
-