Package org.sonar.api.batch.sensor.issue
Interface ExternalIssue
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CodeCharacteristiccharacteristic()Characteristic of the issue according to Clean Code Taxonomy.java.lang.StringengineId()java.lang.LongremediationEffort()Effort to fix the issue, in minutes.java.lang.StringruleId()Severityseverity()RuleTypetype()Type of the issue.-
Methods inherited from interface org.sonar.api.batch.sensor.issue.IIssue
flows, primaryLocation, ruleKey
-
-
-
-
Method Detail
-
engineId
java.lang.String engineId()
- Since:
- 7.4
-
ruleId
java.lang.String ruleId()
- Since:
- 7.4
-
severity
Severity severity()
-
remediationEffort
@CheckForNull java.lang.Long remediationEffort()
Effort to fix the issue, in minutes.
-
type
RuleType type()
Type of the issue.
-
characteristic
@Beta @CheckForNull CodeCharacteristic characteristic()
Characteristic of the issue according to Clean Code Taxonomy.- Since:
- 9.16
-
-