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

org.graylog2.rest.resources.system.indexer.responses.AutoValue_IndexSetResponse Maven / Gradle / Ivy

There is a newer version: 5.2.7
Show newest version
package org.graylog2.rest.resources.system.indexer.responses;

import com.fasterxml.jackson.annotation.JsonIgnore;
import java.lang.String;
import java.util.List;
import java.util.Map;

final class AutoValue_IndexSetResponse extends $AutoValue_IndexSetResponse {
  AutoValue_IndexSetResponse(int total, List indexSets,
      Map stats) {
    super(total, indexSets, stats);
  }

  @JsonIgnore
  public final int getTotal() {
    return total();
  }

  @JsonIgnore
  public final List getIndexSets() {
    return indexSets();
  }

  @JsonIgnore
  public final Map getStats() {
    return stats();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy