Toggle navigation
Home
org.sonar.server.search.QueryContext to org.sonar.server.es.SearchOptions
No. of Instances - 29
No. of Commits - 4
No. of Projects - {'sonarqube'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Rename Variable
queryContext
to
options
queryContext
to
options
queryContext
to
options
queryContext
to
options
queryContext
to
options
Add or Remove Method invocation
assertThat(queryContext.getFieldsToReturn())
to
assertThat(queryContext.getFields())
contextForResponse.getFieldsToReturn().contains("actives")
to
contextForResponse.getFields().contains("actives")
mapper.toWsRule(rule,result,context.getFieldsToReturn())
to
mapper.toWsRule(rule,result,context.getFields())
assertThat(queryContext.getFieldsToReturn())
to
assertThat(queryContext.getFields())
context.facets()
to
context.getFacets()
assertThat(queryContext.getFieldsToReturn())
to
assertThat(queryContext.getFields())
assertThat(queryContext.getFieldsToReturn())
to
assertThat(queryContext.getFields())
assertThat(queryContext.getFieldsToReturn())
to
assertThat(queryContext.getFields())
context.facets()
to
context.getFacets()
setScroll
to
setOffset
context.facets()
to
context.getFacets()
context.facets().contains(RuleIndex2.FACET_OLD_DEFAULT)
to
context.getFacets().contains(RuleIndex2.FACET_OLD_DEFAULT)
assertThat(queryContext.getFieldsToReturn())
to
assertThat(queryContext.getFields())
options.facets().contains(FACET_STATUSES)
to
options.getFacets().contains(FACET_STATUSES)
options.facets().contains(FACET_ACTIVE_SEVERITIES)
to
options.getFacets().contains(FACET_ACTIVE_SEVERITIES)
options.facets().contains(FACET_SEVERITIES)
to
options.getFacets().contains(FACET_SEVERITIES)
Cascading Type Change (Similar)
QueryContext
to
org.sonar.server.es.SearchOptions