Toggle navigation
Home
org.sonar.db.qualityprofile.ActiveRuleDto to org.sonar.db.qualityprofile.OrgActiveRuleDto
No. of Instances - 29
No. of Commits - 1
No. of Projects - {'sonarqube'}
Hierarchy/Composition: R_SUPER_T
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Add or Remove Method invocation
assertThat(activeRules1.get(0).getKey().ruleKey().rule())
to
assertThat(activeRules1.get(0).getKey().getRuleKey().rule())
Lists.transform(rules,RuleDto::getId)
to
ruleIds
query.getOrganizationUuid()
to
query.getOrganization()
d.getKey().ruleKey()
to
getRuleKey
assertThat(activeRules1.get(0).getKey().ruleKey().rule())
to
assertThat(activeRules1.get(0).getKey().getRuleKey().rule())
activeRule.getKey().qProfile()
to
activeRule.getProfileUuid()
activeRule.getKey().qProfile()
to
activeRule.getProfileUuid()
organizationUuid
to
organization.getUuid()
assertThat(activeRules2.get(0).getKey().ruleKey().rule())
to
assertThat(activeRules2.get(0).getKey().getRuleKey().rule())
assertThat(activeRules2.get(0).getKey().ruleKey().rule())
to
assertThat(activeRules2.get(0).getKey().getRuleKey().rule())
dbClient.activeRuleDao().selectByProfileKey(session,profile.getKee())
to
dbClient.activeRuleDao().selectByProfile(dbSession,profile)
Cascading Type Change (Similar)
List<ActiveRuleDto>
to
List<OrgActiveRuleDto>
List<ActiveRuleDto>
to
List<OrgActiveRuleDto>
Rename Method invocation
selectByProfileKey
to
selectByProfile
Rename Variable
activeRuleDtos
to
activeRules
activeRuleDtos
to
activeRules
activeRuleDtos
to
activeRules
activeRuleDtos
to
activeRules
activeRuleDtos
to
activeRules
activeRuleDtos
to
activeRules
activeRuleDtos
to
activeRules
activeRuleDtos
to
activeRules
activeRuleDtos
to
activeRules
activeRuleDto
to
activeRule
activeRuleDto
to
activeRule
Cascading Type Change (Different)
Map<RuleKey,ActiveRuleDto>
to
Multimap<RuleKey,OrgActiveRuleDto>
Other
writeActiveRules(rule.getKey(),singletonList(activeRule),activeRuleParamsByActiveRuleKey,activesBuilder)
to
writeActiveRules(rule.getKey(),singletonList(activeRule),activeRuleParamsByActiveRuleKey,activesBuilder)