public interface

ValidatorRegistry

com.atlassian.jira.jql.validator.ValidatorRegistry
Known Indirect Subclasses

Class Overview

Resolves the validators for a provided TerminalClause.

Summary

Public Methods
Collection<ClauseValidator> getClauseValidator(User searcher, WasClause clause)
Fetches the associated ClauseValidators for the provided WasClause.
Collection<ClauseValidator> getClauseValidator(User searcher, TerminalClause clause)
Fetches the associated ClauseValidators for the provided TerminalClause.
ChangedClauseValidator getClauseValidator(User searcher, ChangedClause clause)
Fetches the associated ClauseValidators for the provided ChangedClause.

Public Methods

public Collection<ClauseValidator> getClauseValidator (User searcher, WasClause clause)

Fetches the associated ClauseValidators for the provided WasClause. The returned value is based on the clause's name and the Operator that is associated with the provided clause. Multiple values may be returned for custom fields.

Parameters
searcher the user who is performing the search.
clause that defines the name and operator for which we want to find a clause validator, must not be null.
Returns
  • the validators associated with this clause, or empty list if the lookup failed.

public Collection<ClauseValidator> getClauseValidator (User searcher, TerminalClause clause)

Fetches the associated ClauseValidators for the provided TerminalClause. The returned value is based on the clause's name and the Operator that is associated with the provided clause. Multiple values may be returned for custom fields.

Parameters
searcher the user who is performing the search.
clause that defines the name and operator for which we want to find a clause validator, must not be null.
Returns
  • the validators associated with this clause, or empty list if the lookup failed.

public ChangedClauseValidator getClauseValidator (User searcher, ChangedClause clause)

Fetches the associated ClauseValidators for the provided ChangedClause.

Parameters
searcher the user who is performing the search.
clause that defines the field
Returns
  • the validators associated with this clause, or empty list if the lookup failed.