Interface LdapConnectionDetails

All Superinterfaces:
ConnectionDetails

public interface LdapConnectionDetails extends ConnectionDetails
Details required to establish a connection to an LDAP service.
Since:
4.0.0
Author:
Philipp Kessler
  • Method Summary

    Modifier and Type
    Method
    Description
    default @Nullable String
    Base suffix from which all operations should originate.
    default @Nullable String
    Login password of the server.
    LDAP URLs of the server.
    default @Nullable String
    Login username of the server.
  • Method Details

    • getUrls

      String[] getUrls()
      LDAP URLs of the server.
      Returns:
      the LDAP URLs to use
    • getBase

      default @Nullable String getBase()
      Base suffix from which all operations should originate.
      Returns:
      base suffix
    • getUsername

      default @Nullable String getUsername()
      Login username of the server.
      Returns:
      login username
    • getPassword

      default @Nullable String getPassword()
      Login password of the server.
      Returns:
      login password