Package com.atlassian.jira.jql.validator
Class FreeTextFieldValidator
java.lang.Object
com.atlassian.jira.jql.validator.FreeTextFieldValidator
- All Implemented Interfaces:
ClauseValidator
- Direct Known Subclasses:
CommentValidator
,DescriptionValidator
,EnvironmentValidator
,SummaryValidator
A generic validator for text fields
- Since:
- v4.0
-
Field Summary
-
Constructor Summary
ConstructorDescriptionFreeTextFieldValidator
(String indexField, JqlOperandResolver operandResolver) -
Method Summary
Modifier and TypeMethodDescriptionvalidate
(ApplicationUser searcher, TerminalClause terminalClause) Validates a clause and adds human readable i18n'ed messages if there is a problem.
-
Field Details
-
INVALID_FIRST_CHAR_LIST
Deprecated.This field is not used anymore and will be removed in next releases.
-
-
Constructor Details
-
FreeTextFieldValidator
-
-
Method Details
-
validate
@Nonnull public MessageSet validate(ApplicationUser searcher, @Nonnull TerminalClause terminalClause) Description copied from interface:ClauseValidator
Validates a clause and adds human readable i18n'ed messages if there is a problem.- Specified by:
validate
in interfaceClauseValidator
- Parameters:
searcher
- the user who is executing the search.terminalClause
- the clause to validate.- Returns:
- an MessageSet that will contain any messages relating to failed validation. An empty message set must be returned to indicate there were no errors. null can never be returned.
-