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

org.graylog2.system.stats.elasticsearch.AutoValue_NodesStats Maven / Gradle / Ivy

There is a newer version: 6.0.2
Show newest version
package org.graylog2.system.stats.elasticsearch;

import com.fasterxml.jackson.annotation.JsonIgnore;

final class AutoValue_NodesStats extends $AutoValue_NodesStats {
  AutoValue_NodesStats(int total, int masterOnly, int dataOnly, int masterData, int client) {
    super(total, masterOnly, dataOnly, masterData, client);
  }

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

  @JsonIgnore
  public final int getMasterOnly() {
    return masterOnly();
  }

  @JsonIgnore
  public final int getDataOnly() {
    return dataOnly();
  }

  @JsonIgnore
  public final int getMasterData() {
    return masterData();
  }

  @JsonIgnore
  public final int getClient() {
    return client();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy