public final class LdapDnsProviderResult extends Object
 This class is used by an LdapDnsProvider to return the result of a DNS lookup for a given LDAP URL. The result consists of a domain name and its associated LDAP server endpoints. 
 A null domainName is equivalent to and represented by an empty string.
| Constructor | Description | 
|---|---|
| LdapDnsProviderResult | Construct an LdapDnsProviderResult consisting of a resolved domain name and the LDAP server endpoints that serve the domain. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| String | getDomainName() | Returns the domain name resolved from the LDAP URL. | 
| List | getEndpoints() | Returns the possibly empty list of individual server endpoints resolved from the LDAP URL. | 
public LdapDnsProviderResult(String domainName, List<String> endpoints)
domainName - the resolved domain name; can be null.endpoints - the possibly empty list of resolved LDAP server endpointsNullPointerException - if endpoints contains null elements.ClassCastException - if endpoints contains non- String elements.public String getDomainName()
LdapDnsProviderResult is created with a null domain name.public List<String> getEndpoints()
List containing the resolved LDAP server endpoints
    © 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
    https://docs.oracle.com/en/java/javase/21/docs/api/java.naming/javax/naming/ldap/spi/LdapDnsProviderResult.html