Package org.sonar.api.ce.measure
Interface Issue
-
public interface IssueIssue that can be used in aMeasureComputer- Since:
- 5.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Durationeffort()java.util.Map<SoftwareQuality,Severity>impacts()java.lang.Stringkey()java.lang.Stringresolution()Available list of resolutions can be found inIssue.RESOLUTIONSRuleKeyruleKey()java.lang.Stringseverity()Deprecated.since 10.1, useimpacts()insteadjava.lang.Stringstatus()Available list of status can be found inIssue.STATUSESRuleTypetype()Deprecated.since 10.1, useimpacts()instead
-
-
-
Method Detail
-
key
java.lang.String key()
-
ruleKey
RuleKey ruleKey()
-
status
java.lang.String status()
Available list of status can be found inIssue.STATUSES
-
resolution
@CheckForNull java.lang.String resolution()
Available list of resolutions can be found inIssue.RESOLUTIONS
-
severity
@Deprecated(since="10.1") java.lang.String severity()
Deprecated.since 10.1, useimpacts()insteadSee constants inSeverity.
-
effort
@CheckForNull Duration effort()
- Since:
- 5.5
-
type
@Deprecated(since="10.1") RuleType type()
Deprecated.since 10.1, useimpacts()instead- Since:
- 5.5
-
impacts
java.util.Map<SoftwareQuality,Severity> impacts()
- Since:
- 10.1
-
-