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

org.graylog2.rest.models.dashboards.requests.$AutoValue_AddWidgetRequest Maven / Gradle / Ivy

There is a newer version: 5.2.7
Show newest version


package org.graylog2.rest.models.dashboards.requests;

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

@Generated("com.google.auto.value.processor.AutoValueProcessor")
abstract class $AutoValue_AddWidgetRequest extends AddWidgetRequest {

  private final String description;

  private final String type;

  private final int cacheTime;

  private final Map config;

  $AutoValue_AddWidgetRequest(
      String description,
      String type,
      int cacheTime,
      Map config) {
    if (description == null) {
      throw new NullPointerException("Null description");
    }
    this.description = description;
    if (type == null) {
      throw new NullPointerException("Null type");
    }
    this.type = type;
    this.cacheTime = cacheTime;
    if (config == null) {
      throw new NullPointerException("Null config");
    }
    this.config = config;
  }

  @JsonProperty
  @Override
  public String description() {
    return description;
  }

  @JsonProperty
  @Override
  public String type() {
    return type;
  }

  @JsonProperty(value = "cache_time")
  @Override
  public int cacheTime() {
    return cacheTime;
  }

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

  @Override
  public String toString() {
    return "AddWidgetRequest{"
         + "description=" + description + ", "
         + "type=" + type + ", "
         + "cacheTime=" + cacheTime + ", "
         + "config=" + config
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof AddWidgetRequest) {
      AddWidgetRequest that = (AddWidgetRequest) o;
      return (this.description.equals(that.description()))
           && (this.type.equals(that.type()))
           && (this.cacheTime == that.cacheTime())
           && (this.config.equals(that.config()));
    }
    return false;
  }

  @Override
  public int hashCode() {
    int h$ = 1;
    h$ *= 1000003;
    h$ ^= description.hashCode();
    h$ *= 1000003;
    h$ ^= type.hashCode();
    h$ *= 1000003;
    h$ ^= cacheTime;
    h$ *= 1000003;
    h$ ^= config.hashCode();
    return h$;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy