Interface SearchResult
public interface SearchResult
SearchResult
 Class in charge of returning the result of the search through PQL
- 
Method SummaryModifier and TypeMethodDescriptionGet all messages produced during the searchGet all error messages produced during the searchList<com.atlassian.jira.project.Project>Get the list of projects resulting from the search by PQL IMPORTANT: If the list has error messages the result will be an empty listGet all warning produced during the searchbooleanGet if the result has error messagesbooleanGet if the result has messagesbooleanGet if the result has warning messages
- 
Method Details- 
getResultingProjectsList<com.atlassian.jira.project.Project> getResultingProjects()Get the list of projects resulting from the search by PQL IMPORTANT: If the list has error messages the result will be an empty list- Returns:
- A List of projects
 
- 
getAllMessagesGet all messages produced during the search- Returns:
- A list of messages
 
- 
getErrorMessagesGet all error messages produced during the search- Returns:
- A list of error messages
 
- 
getWarningMessagesGet all warning produced during the search- Returns:
- A list of warning messages
 
- 
hasMessagesboolean hasMessages()Get if the result has messages- Returns:
- boolean
 
- 
hasErrorMessagesboolean hasErrorMessages()Get if the result has error messages- Returns:
- boolean
 
- 
hasWarningMessagesboolean hasWarningMessages()Get if the result has warning messages- Returns:
- boolean
 
 
-