Interface IssueSearchLimits
- All Known Implementing Classes:
IssueSearchLimitsImpl
public interface IssueSearchLimits
Utility methods that allow you to get the limits that are imposed by JIRA configuration properties.
- Since:
- v4.3
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intThe default maximum for the number of issues returned by a search. -
Method Summary
Modifier and TypeMethodDescriptionintReturns the maximum number of search results that this JIRA instance is configured to allow, by reading it from the
-
Field Details
-
DEFAULT_MAX_RESULTS
static final int DEFAULT_MAX_RESULTSThe default maximum for the number of issues returned by a search.- See Also:
-
-
Method Details
-
getMaxResults
int getMaxResults()Returns the maximum number of search results that this JIRA instance is configured to allow, by reading it from thejpm.xml
file. If there is a problem reading the configured value, this method returns 1000.- Returns:
- an int containing the maximum number of search results to return
-