org.sonar.wsclient.issue
Interface Issue

All Known Implementing Classes:
DefaultIssue

public interface Issue

Since:
3.6

Method Summary
 String actionPlan()
           
 String assignee()
          Login of assignee.
 String attribute(String key)
           
 Map<String,String> attributes()
           
 String author()
          SCM account
 Date closeDate()
           
 List<IssueComment> comments()
          Non-null list of comments
 Long componentId()
          Deprecated. since 4.4. Use componentKey() instead
 String componentKey()
           
 Date creationDate()
           
 String debt()
           
 String key()
          Unique key
 Integer line()
           
 String message()
           
 String projectKey()
           
 String reporter()
           
 String resolution()
          The resolution type.
 String ruleKey()
           
 String severity()
           
 String status()
           
 Date updateDate()
           
 

Method Detail

key

String key()
Unique key


componentKey

String componentKey()

componentId

@Deprecated
Long componentId()
Deprecated. since 4.4. Use componentKey() instead


projectKey

String projectKey()

ruleKey

String ruleKey()

severity

String severity()

message

@CheckForNull
String message()

line

@CheckForNull
Integer line()

debt

@CheckForNull
String debt()

status

String status()

resolution

@CheckForNull
String resolution()
The resolution type. Null if the issue is not resolved.


reporter

@CheckForNull
String reporter()

assignee

@CheckForNull
String assignee()
Login of assignee. Null if issue is not assigned.


author

@CheckForNull
String author()
SCM account


actionPlan

@CheckForNull
String actionPlan()

creationDate

Date creationDate()

updateDate

Date updateDate()

closeDate

@CheckForNull
Date closeDate()

attribute

@CheckForNull
String attribute(String key)

attributes

Map<String,String> attributes()

comments

List<IssueComment> comments()
Non-null list of comments



Copyright © 2009–2014 SonarSource. All rights reserved.