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

org.graylog2.rest.models.system.ldap.responses.AutoValue_LdapTestConfigResponse Maven / Gradle / Ivy

There is a newer version: 6.0.5
Show newest version

package org.graylog2.rest.models.system.ldap.responses;

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

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

  private final boolean connected;
  private final boolean systemAuthenticated;
  private final boolean loginAuthenticated;
  private final Map entry;
  private final Set groups;
  private final String exception;

  AutoValue_LdapTestConfigResponse(
      boolean connected,
      boolean systemAuthenticated,
      boolean loginAuthenticated,
      Map entry,
      Set groups,
      @Nullable String exception) {
    this.connected = connected;
    this.systemAuthenticated = systemAuthenticated;
    this.loginAuthenticated = loginAuthenticated;
    if (entry == null) {
      throw new NullPointerException("Null entry");
    }
    this.entry = entry;
    if (groups == null) {
      throw new NullPointerException("Null groups");
    }
    this.groups = groups;
    this.exception = exception;
  }

  @JsonProperty
  @Override
  public boolean connected() {
    return connected;
  }

  @JsonProperty
  @Override
  public boolean systemAuthenticated() {
    return systemAuthenticated;
  }

  @JsonProperty
  @Override
  public boolean loginAuthenticated() {
    return loginAuthenticated;
  }

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

  @JsonProperty
  @Override
  public Set groups() {
    return groups;
  }

  @JsonProperty
  @Nullable
  @Override
  public String exception() {
    return exception;
  }

  @Override
  public String toString() {
    return "LdapTestConfigResponse{"
        + "connected=" + connected + ", "
        + "systemAuthenticated=" + systemAuthenticated + ", "
        + "loginAuthenticated=" + loginAuthenticated + ", "
        + "entry=" + entry + ", "
        + "groups=" + groups + ", "
        + "exception=" + exception
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof LdapTestConfigResponse) {
      LdapTestConfigResponse that = (LdapTestConfigResponse) o;
      return (this.connected == that.connected())
           && (this.systemAuthenticated == that.systemAuthenticated())
           && (this.loginAuthenticated == that.loginAuthenticated())
           && (this.entry.equals(that.entry()))
           && (this.groups.equals(that.groups()))
           && ((this.exception == null) ? (that.exception() == null) : this.exception.equals(that.exception()));
    }
    return false;
  }

  @Override
  public int hashCode() {
    int h = 1;
    h *= 1000003;
    h ^= this.connected ? 1231 : 1237;
    h *= 1000003;
    h ^= this.systemAuthenticated ? 1231 : 1237;
    h *= 1000003;
    h ^= this.loginAuthenticated ? 1231 : 1237;
    h *= 1000003;
    h ^= this.entry.hashCode();
    h *= 1000003;
    h ^= this.groups.hashCode();
    h *= 1000003;
    h ^= (exception == null) ? 0 : this.exception.hashCode();
    return h;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy