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

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

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

import com.fasterxml.jackson.annotation.JsonIgnore;

final class AutoValue_AllIndices extends $AutoValue_AllIndices {
  AutoValue_AllIndices(ClosedIndices closed, ClosedIndices reopened, OpenIndicesInfo all) {
    super(closed, reopened, all);
  }

  @JsonIgnore
  public final ClosedIndices getClosed() {
    return closed();
  }

  @JsonIgnore
  public final ClosedIndices getReopened() {
    return reopened();
  }

  @JsonIgnore
  public final OpenIndicesInfo getAll() {
    return all();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy