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

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

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

import com.fasterxml.jackson.annotation.JsonIgnore;
import java.lang.String;
import java.util.Map;
import org.graylog2.rest.models.count.responses.MessageCountResponse;
import org.graylog2.rest.models.system.deflector.responses.DeflectorSummary;

final class AutoValue_IndexerOverview extends $AutoValue_IndexerOverview {
  AutoValue_IndexerOverview(DeflectorSummary deflectorSummary,
      IndexerClusterOverview indexerCluster, MessageCountResponse messageCountResponse,
      Map indices) {
    super(deflectorSummary, indexerCluster, messageCountResponse, indices);
  }

  @JsonIgnore
  public final DeflectorSummary getDeflectorSummary() {
    return deflectorSummary();
  }

  @JsonIgnore
  public final IndexerClusterOverview getIndexerCluster() {
    return indexerCluster();
  }

  @JsonIgnore
  public final MessageCountResponse getMessageCountResponse() {
    return messageCountResponse();
  }

  @JsonIgnore
  public final Map getIndices() {
    return indices();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy