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

org.graylog2.rest.models.system.indexer.responses.AutoValue_IndexStats_DocsStats Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonIgnore;

final class AutoValue_IndexStats_DocsStats extends $AutoValue_IndexStats_DocsStats {
  AutoValue_IndexStats_DocsStats(long count, long deleted) {
    super(count, deleted);
  }

  @JsonIgnore
  public final long getCount() {
    return count();
  }

  @JsonIgnore
  public final long getDeleted() {
    return deleted();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy