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

org.graylog2.rest.models.system.inputs.extractors.requests.AutoValue_OrderExtractorsRequest Maven / Gradle / Ivy

There is a newer version: 5.2.6
Show newest version

package org.graylog2.rest.models.system.inputs.extractors.requests;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Map;
import javax.annotation.Generated;

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

  private final Map order;

  AutoValue_OrderExtractorsRequest(
      Map order) {
    if (order == null) {
      throw new NullPointerException("Null order");
    }
    this.order = order;
  }

  @JsonProperty
  @Override
  public Map order() {
    return order;
  }

  @Override
  public String toString() {
    return "OrderExtractorsRequest{"
        + "order=" + order
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof OrderExtractorsRequest) {
      OrderExtractorsRequest that = (OrderExtractorsRequest) o;
      return (this.order.equals(that.order()));
    }
    return false;
  }

  @Override
  public int hashCode() {
    int h = 1;
    h *= 1000003;
    h ^= this.order.hashCode();
    return h;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy