io.codemodder.sonar.model.SearchIssueResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-api-model Show documentation
Show all versions of sonar-api-model Show documentation
Library with API models for data from Sonar tools
package io.codemodder.sonar.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/** The response when searching for issues. */
public final class SearchIssueResponse extends SearchFindingResponse {
@JsonProperty("issues")
private List issues;
public List getIssues() {
return issues;
}
@Override
public int findingCount() {
return issues.size();
}
}