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

org.graylog2.rest.models.system.indexer.responses.AutoValue_IndexStats_TimeAndTotalStats 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_TimeAndTotalStats extends $AutoValue_IndexStats_TimeAndTotalStats {
  AutoValue_IndexStats_TimeAndTotalStats(long total, long timeSeconds) {
    super(total, timeSeconds);
  }

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

  @JsonIgnore
  public final long getTimeSeconds() {
    return timeSeconds();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy