All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.codemodder.sonar.model.SearchFindingResponse Maven / Gradle / Ivy

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy