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

org.graylog2.migrations.$AutoValue_V20191129134600_CreateInitialUrlWhitelist_MigrationCompleted Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonProperty;
import javax.annotation.processing.Generated;

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

  private final String createdWhitelist;

  $AutoValue_V20191129134600_CreateInitialUrlWhitelist_MigrationCompleted(
      String createdWhitelist) {
    if (createdWhitelist == null) {
      throw new NullPointerException("Null createdWhitelist");
    }
    this.createdWhitelist = createdWhitelist;
  }

  @JsonProperty("created_whitelist")
  @Override
  public String createdWhitelist() {
    return createdWhitelist;
  }

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy