Interface LdapConnectionDetails

All Superinterfaces:
ConnectionDetails

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

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

    • getUrls

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

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

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

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