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

org.graylog.plugins.views.migrations.$AutoValue_V20190304102700_MigrateMessageListStructure_MigrationCompleted Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version


package org.graylog.plugins.views.migrations;

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

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

  private final List viewIds;

  $AutoValue_V20190304102700_MigrateMessageListStructure_MigrationCompleted(
      List viewIds) {
    if (viewIds == null) {
      throw new NullPointerException("Null viewIds");
    }
    this.viewIds = viewIds;
  }

  @JsonProperty(value = "viewIds")
  @Override
  public List viewIds() {
    return viewIds;
  }

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy