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

org.graylog.plugins.views.search.export.AutoValue_ExportMessagesCommand Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
package org.graylog.plugins.views.search.export;

import java.util.LinkedHashSet;
import java.util.List;
import java.util.OptionalInt;
import java.util.Set;
import javax.annotation.Generated;
import org.graylog.plugins.views.search.elasticsearch.ElasticsearchQueryString;
import org.graylog2.decorators.Decorator;
import org.graylog2.plugin.indexer.searches.timeranges.AbsoluteRange;

@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_ExportMessagesCommand extends ExportMessagesCommand {

  private final AbsoluteRange timeRange;

  private final ElasticsearchQueryString queryString;

  private final Set streams;

  private final LinkedHashSet fieldsInOrder;

  private final List decorators;

  private final int chunkSize;

  private final OptionalInt limit;

  private AutoValue_ExportMessagesCommand(
      AbsoluteRange timeRange,
      ElasticsearchQueryString queryString,
      Set streams,
      LinkedHashSet fieldsInOrder,
      List decorators,
      int chunkSize,
      OptionalInt limit) {
    this.timeRange = timeRange;
    this.queryString = queryString;
    this.streams = streams;
    this.fieldsInOrder = fieldsInOrder;
    this.decorators = decorators;
    this.chunkSize = chunkSize;
    this.limit = limit;
  }

  @Override
  public AbsoluteRange timeRange() {
    return timeRange;
  }

  @Override
  public ElasticsearchQueryString queryString() {
    return queryString;
  }

  @Override
  public Set streams() {
    return streams;
  }

  @Override
  public LinkedHashSet fieldsInOrder() {
    return fieldsInOrder;
  }

  @Override
  public List decorators() {
    return decorators;
  }

  @Override
  public int chunkSize() {
    return chunkSize;
  }

  @Override
  public OptionalInt limit() {
    return limit;
  }

  @Override
  public String toString() {
    return "ExportMessagesCommand{"
        + "timeRange=" + timeRange + ", "
        + "queryString=" + queryString + ", "
        + "streams=" + streams + ", "
        + "fieldsInOrder=" + fieldsInOrder + ", "
        + "decorators=" + decorators + ", "
        + "chunkSize=" + chunkSize + ", "
        + "limit=" + limit
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof ExportMessagesCommand) {
      ExportMessagesCommand that = (ExportMessagesCommand) o;
      return this.timeRange.equals(that.timeRange())
          && this.queryString.equals(that.queryString())
          && this.streams.equals(that.streams())
          && this.fieldsInOrder.equals(that.fieldsInOrder())
          && this.decorators.equals(that.decorators())
          && this.chunkSize == that.chunkSize()
          && this.limit.equals(that.limit());
    }
    return false;
  }

  @Override
  public int hashCode() {
    int h$ = 1;
    h$ *= 1000003;
    h$ ^= timeRange.hashCode();
    h$ *= 1000003;
    h$ ^= queryString.hashCode();
    h$ *= 1000003;
    h$ ^= streams.hashCode();
    h$ *= 1000003;
    h$ ^= fieldsInOrder.hashCode();
    h$ *= 1000003;
    h$ ^= decorators.hashCode();
    h$ *= 1000003;
    h$ ^= chunkSize;
    h$ *= 1000003;
    h$ ^= limit.hashCode();
    return h$;
  }

  @Override
  public ExportMessagesCommand.Builder toBuilder() {
    return new Builder(this);
  }

  static final class Builder extends ExportMessagesCommand.Builder {
    private AbsoluteRange timeRange;
    private ElasticsearchQueryString queryString;
    private Set streams;
    private LinkedHashSet fieldsInOrder;
    private List decorators;
    private Integer chunkSize;
    private OptionalInt limit = OptionalInt.empty();
    Builder() {
    }
    private Builder(ExportMessagesCommand source) {
      this.timeRange = source.timeRange();
      this.queryString = source.queryString();
      this.streams = source.streams();
      this.fieldsInOrder = source.fieldsInOrder();
      this.decorators = source.decorators();
      this.chunkSize = source.chunkSize();
      this.limit = source.limit();
    }
    @Override
    public ExportMessagesCommand.Builder timeRange(AbsoluteRange timeRange) {
      if (timeRange == null) {
        throw new NullPointerException("Null timeRange");
      }
      this.timeRange = timeRange;
      return this;
    }
    @Override
    public ExportMessagesCommand.Builder queryString(ElasticsearchQueryString queryString) {
      if (queryString == null) {
        throw new NullPointerException("Null queryString");
      }
      this.queryString = queryString;
      return this;
    }
    @Override
    public ExportMessagesCommand.Builder streams(Set streams) {
      if (streams == null) {
        throw new NullPointerException("Null streams");
      }
      this.streams = streams;
      return this;
    }
    @Override
    public ExportMessagesCommand.Builder fieldsInOrder(LinkedHashSet fieldsInOrder) {
      if (fieldsInOrder == null) {
        throw new NullPointerException("Null fieldsInOrder");
      }
      this.fieldsInOrder = fieldsInOrder;
      return this;
    }
    @Override
    public ExportMessagesCommand.Builder decorators(List decorators) {
      if (decorators == null) {
        throw new NullPointerException("Null decorators");
      }
      this.decorators = decorators;
      return this;
    }
    @Override
    public ExportMessagesCommand.Builder chunkSize(int chunkSize) {
      this.chunkSize = chunkSize;
      return this;
    }
    @Override
    public ExportMessagesCommand.Builder limit(Integer limit) {
      this.limit = OptionalInt.of(limit);
      return this;
    }
    @Override
    ExportMessagesCommand autoBuild() {
      String missing = "";
      if (this.timeRange == null) {
        missing += " timeRange";
      }
      if (this.queryString == null) {
        missing += " queryString";
      }
      if (this.streams == null) {
        missing += " streams";
      }
      if (this.fieldsInOrder == null) {
        missing += " fieldsInOrder";
      }
      if (this.decorators == null) {
        missing += " decorators";
      }
      if (this.chunkSize == null) {
        missing += " chunkSize";
      }
      if (!missing.isEmpty()) {
        throw new IllegalStateException("Missing required properties:" + missing);
      }
      return new AutoValue_ExportMessagesCommand(
          this.timeRange,
          this.queryString,
          this.streams,
          this.fieldsInOrder,
          this.decorators,
          this.chunkSize,
          this.limit);
    }
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy