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

org.graylog2.rest.models.system.indexer.responses.AutoValue_IndexInfo 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;
import java.util.List;

final class AutoValue_IndexInfo extends $AutoValue_IndexInfo {
  AutoValue_IndexInfo(IndexStats primaryShards, IndexStats allShards, List routing,
      boolean isReopened) {
    super(primaryShards, allShards, routing, isReopened);
  }

  @JsonIgnore
  public final IndexStats getPrimaryShards() {
    return primaryShards();
  }

  @JsonIgnore
  public final IndexStats getAllShards() {
    return allShards();
  }

  @JsonIgnore
  public final List getRouting() {
    return routing();
  }

  @JsonIgnore
  public final boolean isIsReopened() {
    return isReopened();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy