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

org.graylog2.migrations.V20180214093600_AdjustDashboardPositionToNewResolution.$AutoValue_Migration_MigrationCompleted Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
package org.graylog2.migrations.V20180214093600_AdjustDashboardPositionToNewResolution;

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

@Generated("com.google.auto.value.processor.AutoValueProcessor")
abstract class $AutoValue_Migration_MigrationCompleted extends Migration.MigrationCompleted {

  private final Map dashboard_ids;

  $AutoValue_Migration_MigrationCompleted(
      Map dashboard_ids) {
    if (dashboard_ids == null) {
      throw new NullPointerException("Null dashboard_ids");
    }
    this.dashboard_ids = dashboard_ids;
  }

  @JsonProperty("dashboard_ids")
  @Override
  public Map dashboard_ids() {
    return dashboard_ids;
  }

  @Override
  public String toString() {
    return "MigrationCompleted{"
        + "dashboard_ids=" + dashboard_ids
        + "}";
  }

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy