io.codemodder.sonar.model.SearchFindingResponse 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;
/** The response when searching for a type of Sonar issue. */
public abstract class SearchFindingResponse {
@JsonProperty("total")
private int total;
@JsonProperty("paging")
private Paging paging;
public int getTotal() {
return total;
}
public Paging getPaging() {
return paging;
}
/** Return the count of issues. */
public abstract int findingCount();
}