Class SavedFilterCycleDetector

java.lang.Object
com.atlassian.jira.jql.validator.SavedFilterCycleDetector

@InjectableComponent public class SavedFilterCycleDetector extends Object
Runs through a saved filter to determine if there is any self-reference anywhere in the nested filter.
Since:
v4.0
  • Constructor Details

  • Method Details

    • containsSavedFilterReference

      public boolean containsSavedFilterReference(ApplicationUser searcher, boolean overrideSecurity, SearchRequest savedFilter, Long filterId)
      Checks if the specified saved SearchRequest contains a reference to another saved filter by using the savedFilter clause.
      Parameters:
      searcher - the user performing the search
      overrideSecurity - false if we should check permissions
      savedFilter - the saved filter to check if it holds a reference to the filter with the filterId
      filterId - the id of the filter to check if it can be referenced from the savedFilter, can be null. if null it takes the filter id from the savedFilter, thus checking if it can reference itself
      Returns:
      true if the filter does contains a reference to the filter with filterId; false otherwise.