Package org.sonar.api.ce.measure
Interface Issue
-
public interface Issue
Issue that can be used in aMeasureComputer
- Since:
- 5.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Duration
effort()
java.util.Map<SoftwareQuality,Severity>
impacts()
java.lang.String
key()
java.lang.String
resolution()
Available list of resolutions can be found inIssue.RESOLUTIONS
RuleKey
ruleKey()
java.lang.String
severity()
Deprecated.since 10.1, useimpacts()
insteadjava.lang.String
status()
Available list of status can be found inIssue.STATUSES
RuleType
type()
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
-
-