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.JsonIgnore;
import java.lang.String;
import java.util.Map;
import java.util.Set;
import javax.annotation.Nullable;

final class AutoValue_LdapTestConfigResponse extends $AutoValue_LdapTestConfigResponse {
  AutoValue_LdapTestConfigResponse(boolean connected, boolean systemAuthenticated,
      boolean loginAuthenticated, Map entry, Set groups, String exception) {
    super(connected, systemAuthenticated, loginAuthenticated, entry, groups, exception);
  }

  @JsonIgnore
  public final boolean isConnected() {
    return connected();
  }

  @JsonIgnore
  public final boolean isSystemAuthenticated() {
    return systemAuthenticated();
  }

  @JsonIgnore
  public final boolean isLoginAuthenticated() {
    return loginAuthenticated();
  }

  @JsonIgnore
  public final Map getEntry() {
    return entry();
  }

  @JsonIgnore
  public final Set getGroups() {
    return groups();
  }

  @JsonIgnore
  @Nullable
  public final String getException() {
    return exception();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy